<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.hydrogenaudio.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Yegor</id>
	<title>Hydrogenaudio Knowledgebase - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.hydrogenaudio.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Yegor"/>
	<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Special:Contributions/Yegor"/>
	<updated>2026-04-29T00:25:49Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22834</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22834"/>
		<updated>2011-07-04T07:21:47Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Limitations and known issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.9.0.3&lt;br /&gt;
| preview_release = -&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones. Thousands of freeware and commercial DSP plug-ins are available in this format.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Limited to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* No x64 VST support: Foobar2000 is a 32-bit application. However, most effect plug-ins are available as 32 bit binaries.&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
Most of these problems are caused by diametrically opposite approaches to the management of DSP objects lifetime. In contrast to VST, Foobar2000 assumes plug-in&#039;s user interface to be highly decoupled from the DSP code and the most difficult task solved by the adapter is coupling things back. Actually, such kind of DSPs as analyzers in fb2k is even impossible due to lack of connection between the GUI and audio rountines (of course one can have analyzers in form of visualization, but it&#039;s out of processing chain then). Foobar2000 recreates DSP objects whenever settings or playback state is changed, while in VST plug-ins are supposed to be loaded only once and their settings are to be changed &#039;&#039;directly&#039;&#039; with either automation or a editor window. Also in VST, plug-ins rely on their host in respect of number of channels, but in Foobar2000 it&#039;s the other way round, i.e. the host renders as many channels as a plug-in has. Finally, VST host must provide a window for the plug-in to create a editor and it&#039;s not supposed to block windows underneath while Foobar2000 requires config windows to be modal, etc.&lt;br /&gt;
&lt;br /&gt;
Given all this, it must be clear that something had to be sacrificed for the sake of features listed above in the article. The adapter keeps track of current DSP chain to ensure proper threading and gapless playback, it abuses programming language features to overcome “one DSP service per class” principle, it adds random data to presets and looks for a window title before opening a editor to distinguish different instances of the same VST effect, it has advanced settings to deal with some other problems as well. In many ways the adapter&#039;s reliability is limited by these tricks, yet there are many faulty VST plug-ins around.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing.&lt;br /&gt;
* The component stores its settings in a separate binary file because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.9.0.3&#039;&#039;&#039;&lt;br /&gt;
* Fixed removal on the player updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.9&#039;&#039;&#039;&lt;br /&gt;
* Support for conversion and playback with same DSP chain presets&lt;br /&gt;
* Preset manager for each VST&lt;br /&gt;
* Per-instance channel number limit&lt;br /&gt;
* DSP config shortcuts bugfixes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Adobe_Audition&amp;diff=22562</id>
		<title>Adobe Audition</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Adobe_Audition&amp;diff=22562"/>
		<updated>2011-04-27T06:59:01Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Software Infobox&lt;br /&gt;
| name = Adobe Audition&lt;br /&gt;
| logo =&lt;br /&gt;
| screenshot = &lt;br /&gt;
| caption = Integrated audio recording, mixing, editing, and mastering&lt;br /&gt;
| maintainer = Adobe Systems &lt;br /&gt;
| stable_release = 3.0&lt;br /&gt;
| preview_release = &lt;br /&gt;
| operating_system = Windows&lt;br /&gt;
| use = Digital Audio Editor &lt;br /&gt;
| license = [http://www.adobe.com/products/eulas/pdfs/audition_eula.pdf Proprietary]&lt;br /&gt;
| website = [http://www.adobe.com/products/audition/main.html Audition website]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=Introduction= &lt;br /&gt;
&#039;&#039;&#039;Adobe Audition&#039;&#039;&#039; is a Digital Audio Editor released by [http://www.adobe.com Adobe Systems].  Formerly known as &#039;&#039;&#039;CoolEdit Pro&#039;&#039;&#039;, the editor was purchased in [http://www.adobe.com/special/products/audition/syntrillium.html May, 2003.]  It is a powerful tool for creating audio for any destination, from CD and DVD, to broadcast television and digital media.&lt;br /&gt;
&lt;br /&gt;
One strong advantage of Audition is its extensibility using various &amp;quot;Filters&amp;quot; (known in many other applications as &amp;quot;plugins&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
==Features==&lt;br /&gt;
Adobe Audition includes many advanced audio editing features.&lt;br /&gt;
&lt;br /&gt;
===Multi-track Editing===&lt;br /&gt;
Adobe Audition is a multi-track editing program with support for up to 128 tracks.  You can work in multi-track view, or edit individual waveforms.  Audition also has tools for adding audio effects, and creating muisc with loops.  It can record up to 32 tracks simultaneously with real-time effects and EQ processing on each track.&lt;br /&gt;
&lt;br /&gt;
===Video Soundtrack Editing===&lt;br /&gt;
Audition includes features that make it easy to edit video soundtracks.  Included is a video viewer and associated timeline for frame accurate audio editing.  File format support includes [[AVI]], native DV, [[MPEG]], and [[WMV]].&lt;br /&gt;
&lt;br /&gt;
===Digital Signal Processing===&lt;br /&gt;
Audition features approximately built-in audio processors and effects.  Some of these include volume, noise and EQ filters, delay effects, reverb effects, and time/pitch shifting.  Audition also supports third-party effects via both the DirectX interface and the VST plug-in architecture.&lt;br /&gt;
&lt;br /&gt;
===High Resolution Audio===&lt;br /&gt;
Audition offers audio recording and editing at a variety of quality levels.  It supports 32-bit audio with a sample rate of up to 10MHz.  Standard sample rates (such as 44.1KHz - CD quality, 48KHz, 92KHz) are also available.&lt;br /&gt;
&lt;br /&gt;
===Other Features===&lt;br /&gt;
* CD Burning Support&lt;br /&gt;
* 5000 Included Music Loops&lt;br /&gt;
* Built-In 5.1 Surround Sound Encoder&lt;br /&gt;
&lt;br /&gt;
==System Requirements==&lt;br /&gt;
* 400MHz or faster processor (2GHz or faster recommended)&lt;br /&gt;
* Microsoft® Windows® 2000 or Windows XP Professional or Home Edition&lt;br /&gt;
* 64MB of RAM (512MB or more recommended)&lt;br /&gt;
* 75MB of available hard-disk space (700MB recommended for installing optional audio clips)&lt;br /&gt;
* 800x600 color display (1024x768 display recommended)&lt;br /&gt;
* Stereo sound card (multitrack sound card recommended)&lt;br /&gt;
* CD-ROM drive&lt;br /&gt;
* CD-RW drive for audio CD creation&lt;br /&gt;
* Microsoft DirectX 9.0 software required for video import&lt;br /&gt;
* Speakers or headphones recommended&lt;br /&gt;
* Microphone (optional)&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.adobe.com/products/audition/main.html Official Website]&lt;br /&gt;
* [http://www.vuplayer.com/audition.php Additional Audition Filters] -- allow Audition to save and edit in [[FLAC]], [[Ogg Vorbis]], [[Module]], and [[WMA]] formats.&lt;br /&gt;
* [http://www.rarewares.org/ RareWares] -- browse around in this site to find various filters for Audition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Audio Editors]]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22490</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22490"/>
		<updated>2011-04-07T10:54:45Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Limitations and known issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.9.0.3&lt;br /&gt;
| preview_release = -&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones. Thousands of freeware and commercial DSP plug-ins are available in this format.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Limited to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* No x64 VST support: Foobar2000 is a 32-bit application.&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
Most of these problems are caused by diametrically opposite approaches to the management of DSP objects lifetime. In contrast to VST, Foobar2000 assumes plug-in&#039;s user interface to be highly decoupled from the DSP code and the most difficult task solved by the adapter is coupling things back. Actually, such kind of DSPs as analyzers in fb2k is even impossible due to lack of connection between the GUI and audio rountines (of course one can have analyzers in form of visualization, but it&#039;s out of processing chain then). Foobar2000 recreates DSP objects whenever settings or playback state is changed, while in VST plug-ins are supposed to be loaded only once and their settings are to be changed &#039;&#039;directly&#039;&#039; with either automation or a editor window. Also in VST, plug-ins rely on their host in respect of number of channels, but in Foobar2000 it&#039;s the other way round, i.e. the host renders as many channels as a plug-in has. Finally, VST host must provide a window for the plug-in to create a editor and it&#039;s not supposed to block windows underneath while Foobar2000 requires config windows to be modal, etc.&lt;br /&gt;
&lt;br /&gt;
Given all this, it must be clear that something had to be sacrificed for the sake of features listed above in the article. The adapter keeps track of current DSP chain to ensure proper threading and gapless playback, it abuses programming language features to overcome “one DSP service per class” principle, it adds random data to presets and looks for a window title before opening a editor to distinguish different instances of the same VST effect, it has advanced settings to deal with some other problems as well. In many ways the adapter&#039;s reliability is limited by these tricks, yet there are many faulty VST plug-ins around.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing.&lt;br /&gt;
* The component stores its settings in a separate binary file because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.9.0.3&#039;&#039;&#039;&lt;br /&gt;
* Fixed removal on the player updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.9&#039;&#039;&#039;&lt;br /&gt;
* Support for conversion and playback with same DSP chain presets&lt;br /&gt;
* Preset manager for each VST&lt;br /&gt;
* Per-instance channel number limit&lt;br /&gt;
* DSP config shortcuts bugfixes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22452</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22452"/>
		<updated>2011-03-15T02:31:52Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.9.0.3&lt;br /&gt;
| preview_release = -&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones. Thousands of freeware and commercial DSP plug-ins are available in this format.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
Most of these problems are caused by diametrically opposite approaches to the management of DSP objects lifetime. In contrast to VST, Foobar2000 assumes plug-in&#039;s user interface to be highly decoupled from the DSP code and the most difficult task solved by the adapter is coupling things back. Actually, such kind of DSPs as analyzers in fb2k is even impossible due to lack of connection between the GUI and audio rountines (of course one can have analyzers in form of visualization, but it&#039;s out of processing chain then). Foobar2000 recreates DSP objects whenever settings or playback state is changed, while in VST plug-ins are supposed to be loaded only once and their settings are to be changed &#039;&#039;directly&#039;&#039; with either automation or a editor window. Also in VST, plug-ins rely on their host in respect of number of channels, but in Foobar2000 it&#039;s the other way round, i.e. the host renders as many channels as a plug-in has. Finally, VST host must provide a window for the plug-in to create a editor and it&#039;s not supposed to block windows underneath while Foobar2000 requires config windows to be modal, etc.&lt;br /&gt;
&lt;br /&gt;
Given all this, it must be clear that something had to be sacrificed for the sake of features listed above in the article. The adapter keeps track of current DSP chain to ensure proper threading and gapless playback, it abuses programming language features to overcome “one DSP service per class” principle, it adds random data to presets and looks for a window title before opening a editor to distinguish different instances of the same VST effect, it has advanced settings to deal with some other problems as well. In many ways the adapter&#039;s reliability is limited by these tricks, yet there are many faulty VST plug-ins around.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing.&lt;br /&gt;
* The component stores its settings in a separate binary file because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.9.0.3&#039;&#039;&#039;&lt;br /&gt;
* Fixed removal on the player updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.9&#039;&#039;&#039;&lt;br /&gt;
* Support for conversion and playback with same DSP chain presets&lt;br /&gt;
* Preset manager for each VST&lt;br /&gt;
* Per-instance channel number limit&lt;br /&gt;
* DSP config shortcuts bugfixes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22428</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22428"/>
		<updated>2011-03-05T03:32:46Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Change log */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.8.0.1&lt;br /&gt;
| preview_release = 0.9.0.2&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones. Thousands of freeware and commercial DSP plug-ins are available in this format.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
Most of these problems are caused by diametrically opposite approaches to the management of DSP objects lifetime. In contrast to VST, Foobar2000 assumes plug-in&#039;s user interface to be highly decoupled from the DSP code and the most difficult task solved by the adapter is coupling things back. Actually, such kind of DSPs as analyzers in fb2k is even impossible due to lack of connection between the GUI and audio rountines (of course one can have analyzers in form of visualization, but it&#039;s out of processing chain then). Foobar2000 recreates DSP objects whenever settings or playback state is changed, while in VST plug-ins are supposed to be loaded only once and their settings are to be changed &#039;&#039;directly&#039;&#039; with either automation or a editor window. Also in VST, plug-ins rely on their host in respect of number of channels, but in Foobar2000 it&#039;s the other way round, i.e. the host renders as many channels as a plug-in has. Finally, VST host must provide a window for the plug-in to create a editor and it&#039;s not supposed to block windows underneath while Foobar2000 requires config windows to be modal, etc.&lt;br /&gt;
&lt;br /&gt;
Given all this, it must be clear that something had to be sacrificed for the sake of features listed above in the article. The adapter keeps track of current DSP chain to ensure proper threading and gapless playback, it abuses programming language features to overcome “one DSP service per class” principle, it adds random data to presets and looks for a window title before opening a editor to distinguish different instances of the same VST effect, it has advanced settings to deal with some other problems as well. In many ways the adapter&#039;s reliability is limited by these tricks, yet there are many faulty VST plug-ins around.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing.&lt;br /&gt;
* The component stores its settings in a separate binary file because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.9.0.3&#039;&#039;&#039;&lt;br /&gt;
* Fixed removal on the player updates&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.9&#039;&#039;&#039;&lt;br /&gt;
* Support for conversion and playback with same DSP chain presets&lt;br /&gt;
* Preset manager for each VST&lt;br /&gt;
* Per-instance channel number limit&lt;br /&gt;
* DSP config shortcuts bugfixes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22412</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22412"/>
		<updated>2011-02-23T19:27:24Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Limitations and known issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.8.0.1&lt;br /&gt;
| preview_release = 0.9.0.2&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones. Thousands of freeware and commercial DSP plug-ins are available in this format.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
Most of these problems are caused by diametrically opposite approaches to the management of DSP objects lifetime. In contrast to VST, Foobar2000 assumes plug-in&#039;s user interface to be highly decoupled from the DSP code and the most difficult task solved by the adapter is coupling things back. Actually, such kind of DSPs as analyzers in fb2k is even impossible due to lack of connection between the GUI and audio rountines (of course one can have analyzers in form of visualization, but it&#039;s out of processing chain then). Foobar2000 recreates DSP objects whenever settings or playback state is changed, while in VST plug-ins are supposed to be loaded only once and their settings are to be changed &#039;&#039;directly&#039;&#039; with either automation or a editor window. Also in VST, plug-ins rely on their host in respect of number of channels, but in Foobar2000 it&#039;s the other way round, i.e. the host renders as many channels as a plug-in has. Finally, VST host must provide a window for the plug-in to create a editor and it&#039;s not supposed to block windows underneath while Foobar2000 requires config windows to be modal, etc.&lt;br /&gt;
&lt;br /&gt;
Given all this, it must be clear that something had to be sacrificed for the sake of features listed above in the article. The adapter keeps track of current DSP chain to ensure proper threading and gapless playback, it abuses programming language features to overcome “one DSP service per class” principle, it adds random data to presets and looks for a window title before opening a editor to distinguish different instances of the same VST effect, it has advanced settings to deal with some other problems as well. In many ways the adapter&#039;s reliability is limited by these tricks, yet there are many faulty VST plug-ins around.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing.&lt;br /&gt;
* The component stores its settings in a separate binary file because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.9&#039;&#039;&#039;&lt;br /&gt;
* Support for conversion and playback with same DSP chain presets&lt;br /&gt;
* Preset manager for each VST&lt;br /&gt;
* Per-instance channel number limit&lt;br /&gt;
* DSP config shortcuts bugfixes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22411</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22411"/>
		<updated>2011-02-23T19:20:51Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Limitations and known issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.8.0.1&lt;br /&gt;
| preview_release = 0.9.0.2&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones. Thousands of freeware and commercial DSP plug-ins are available in this format.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
Most of these problems are caused by diametrically opposite approaches to the management of DSP objects lifetime. In contrast to VST, Foobar2000 assumes plug-in&#039;s user interface to be highly decoupled from the DSP code and the most difficult task solved by the adapter is coupling things back. Actually, such kind of DSPs as analyzers in fb2k is even impossible due to lack of connection between the GUI and audio rountines (of course one can have analyzers in form of visualization, but it&#039;s out of processing chain then). Foobar2000 recreates DSP objects whenever settings or playback state is changed, while in VST plug-ins are supposed to be loaded only once and their settings are to be changed &#039;&#039;directly&#039;&#039; with either automation or a editor window. Also in VST, plug-ins rely on their host in respect of number of channels, but in Foobar2000 it&#039;s the other way round, i.e. the host renders as many channels as a plug-in has. Finally, VST host must provide a window for the plug-in to create a editor and it&#039;s not supposed to block windows underneath while Foobar2000 requires config windows to be modal, etc.&lt;br /&gt;
&lt;br /&gt;
Given all this, it must be clear that something had to be sacrificed for the sake of features listed above in the article. The adapter keeps track of current DSP chain to ensure proper threading and gapless playback, it abuses programming language features to overcome “one class per DSP service” principle, it adds random data to presets and looks for a window title before opening a editor to distinguish different instances of the same VST effect, it has advanced settings to deal with some other problems as well. In many ways the adapter&#039;s reliability is limited by these tricks, yet there are many faulty VST plug-ins around.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing.&lt;br /&gt;
* The component stores its settings in a separate binary file because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.9&#039;&#039;&#039;&lt;br /&gt;
* Support for conversion and playback with same DSP chain presets&lt;br /&gt;
* Preset manager for each VST&lt;br /&gt;
* Per-instance channel number limit&lt;br /&gt;
* DSP config shortcuts bugfixes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22410</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22410"/>
		<updated>2011-02-23T19:10:54Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Limitations and known issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.8.0.1&lt;br /&gt;
| preview_release = 0.9.0.2&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones. Thousands of freeware and commercial DSP plug-ins are available in this format.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
Most of these problems are caused by diametrically opposite approaches to the management of DSP objects lifetime. In contrast to VST, Foobar2000 assumes plug-in&#039;s user interface to be highly decoupled from the DSP code and the most difficult task solved by the adapter is coupling things back. Actually, such kind of DSPs as analyzers in fb2k is even impossible due to lack of connection between the GUI and audio rountines (of course one can have analyzers in form of visualization, but it&#039;s out of processing chain then). Foobar2000 recreates DSP objects whenever settings or playback state is changed, while in VST plug-ins are supposed to be loaded only once and their settings are to be changed &#039;&#039;directly&#039;&#039; with either automation or a editor window. Also in VST, plug-ins rely on their host in respect of number of channels, but in Foobar2000 it&#039;s the other way round, i.e. the host renders as many channels as a plug-in has. Finally, VST host must provide a window for the plug-in to create a editor and it&#039;s not supposed to block windows underneath while Foobar2000 requires config windows to be modal, etc. Given all this, it must be clear that something had to be sacrificed for the sake of features listed above in the article.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing.&lt;br /&gt;
* The component stores its settings in a separate binary file because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.9&#039;&#039;&#039;&lt;br /&gt;
* Support for conversion and playback with same DSP chain presets&lt;br /&gt;
* Preset manager for each VST&lt;br /&gt;
* Per-instance channel number limit&lt;br /&gt;
* DSP config shortcuts bugfixes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22393</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22393"/>
		<updated>2011-02-11T15:00:34Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Change log */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.8.0.1&lt;br /&gt;
| preview_release = 0.9.0.2&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones. Thousands of freeware and commercial DSP plug-ins are available in this format.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing.&lt;br /&gt;
* The component stores its settings in a separate binary file because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.9&#039;&#039;&#039;&lt;br /&gt;
* Support for conversion and playback with same DSP chain presets&lt;br /&gt;
* Preset manager for each VST&lt;br /&gt;
* Per-instance channel number limit&lt;br /&gt;
* DSP config shortcuts bugfixes&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22392</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22392"/>
		<updated>2011-02-11T14:53:24Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Change log */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.8.0.1&lt;br /&gt;
| preview_release = 0.9.0.2&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones. Thousands of freeware and commercial DSP plug-ins are available in this format.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing.&lt;br /&gt;
* The component stores its settings in a separate binary file because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.9&#039;&#039;&#039;&lt;br /&gt;
* Support for conversion and playback with same DSP chain presets&lt;br /&gt;
* Preset manager for each VST&lt;br /&gt;
* Per-instance channel number limit&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22391</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22391"/>
		<updated>2011-02-11T14:43:55Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.8.0.1&lt;br /&gt;
| preview_release = 0.9.0.2&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones. Thousands of freeware and commercial DSP plug-ins are available in this format.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing.&lt;br /&gt;
* The component stores its settings in a separate binary file because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.9&#039;&#039;&#039;&lt;br /&gt;
* Support for conversion and playback with same DSP chain presets&lt;br /&gt;
* Preset manager for each VST&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22390</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22390"/>
		<updated>2011-02-11T14:43:35Z</updated>

		<summary type="html">&lt;p&gt;Yegor: 0.9&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.8.0.1&lt;br /&gt;
| preview_release = 0.8.0.1&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones. Thousands of freeware and commercial DSP plug-ins are available in this format.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing.&lt;br /&gt;
* The component stores its settings in a separate binary file because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.9&#039;&#039;&#039;&lt;br /&gt;
* Support for conversion and playback with same DSP chain presets&lt;br /&gt;
* Preset manager for each VST&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22341</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22341"/>
		<updated>2011-01-12T19:33:02Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.8.0.1&lt;br /&gt;
| preview_release = 0.8.0.1&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones. Thousands of freeware and commercial DSP plug-ins are available in this format.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing.&lt;br /&gt;
* The component stores its settings in a separate binary file because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22340</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22340"/>
		<updated>2011-01-12T16:06:13Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Important notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.8.0.1&lt;br /&gt;
| preview_release = 0.8.0.1&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing.&lt;br /&gt;
* The component stores its settings in a separate binary file because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22339</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22339"/>
		<updated>2011-01-12T13:21:31Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.8.0.1&lt;br /&gt;
| preview_release = 0.8.0.1&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings either in the registry or in the separate binary file (depending on installation config) because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;Declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039; (0.7.1 and below)&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them. In 0.8 the [un]loading strategy was revamped and this setting isn&#039;t necessary anymore.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22338</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22338"/>
		<updated>2011-01-12T13:18:14Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.8.0.1&lt;br /&gt;
| preview_release = 0.8.0.1&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required for versions below 0.8.1&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings either in the registry or in the separate binary file (depending on installation config) because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.8.1.0&#039;&#039;&#039;&lt;br /&gt;
* Revamped VST [un]loading strategy with regard to threading issues.&lt;br /&gt;
* Doesn&#039;t use registry anymore (hold Shift and press Add button to get VST entries back).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22298</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22298"/>
		<updated>2011-01-02T17:16:09Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.7.1.0&lt;br /&gt;
| preview_release = 0.7.1.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
Microsoft Visual C++ 2008 Redistributable Package (x86) may be required.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings either in the registry or in the separate binary file (depending on installation config) because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22287</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22287"/>
		<updated>2010-12-24T21:02:45Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.7.1.0&lt;br /&gt;
| preview_release = 0.7.1.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary freeware&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings either in the registry or in the separate binary file (depending on installation config) because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22286</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22286"/>
		<updated>2010-12-24T21:01:03Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Important notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.7.1.0&lt;br /&gt;
| preview_release = 0.7.1.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings either in the registry or in the separate binary file (depending on installation config) because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22285</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22285"/>
		<updated>2010-12-24T07:21:47Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.7.1.0&lt;br /&gt;
| preview_release = 0.7.1.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings in the registry because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.7.1&#039;&#039;&#039;&lt;br /&gt;
* Bugfixes in the portable mode support.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22284</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22284"/>
		<updated>2010-12-23T17:28:41Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Change log */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.7.0.0&lt;br /&gt;
| preview_release = 0.7.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings in the registry because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.7.0&#039;&#039;&#039;&lt;br /&gt;
* Serious bugfixes.&lt;br /&gt;
* Relative paths in portable mode.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22283</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22283"/>
		<updated>2010-12-23T17:27:32Z</updated>

		<summary type="html">&lt;p&gt;Yegor: Version update to 0.7&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.7.0.0&lt;br /&gt;
| preview_release = 0.7.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings in the registry because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22256</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22256"/>
		<updated>2010-12-14T11:32:34Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings in the registry because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased. Changes to this setting take effect after restart.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22255</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22255"/>
		<updated>2010-12-14T10:45:22Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
VST program file (.fxp) import/export items are in the system menu of editor windows (right click on the window&#039;s titlebar).&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings in the registry because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22253</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22253"/>
		<updated>2010-12-13T20:18:34Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings in the registry because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
* Added FXP export/import.&lt;br /&gt;
* Improved View → DSP menu.&lt;br /&gt;
* Introduced declicker.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&lt;br /&gt;
* Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&lt;br /&gt;
* Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
* Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
* Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&lt;br /&gt;
* Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&lt;br /&gt;
* Initial release marked as v1.0. Very unstable.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22252</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22252"/>
		<updated>2010-12-13T20:17:23Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings in the registry because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added FXP export/import&lt;br /&gt;
Improved View → DSP menu&lt;br /&gt;
Introduced declicker&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Initial release marked as v1.0. Very unstable.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22251</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22251"/>
		<updated>2010-12-13T20:17:05Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings in the registry because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.6.0&#039;&#039;&#039;&lt;br /&gt;
Added FXP export/import&lt;br /&gt;
Improved View → DSP menu&lt;br /&gt;
Introduced declicker&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Initial release marked as v1.0. Very unstable.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22250</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22250"/>
		<updated>2010-12-13T07:05:42Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Important notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without any notice.&lt;br /&gt;
* The component stores its settings in the registry because of API limitations.&lt;br /&gt;
&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Initial release marked as v1.0. Very unstable.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22249</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22249"/>
		<updated>2010-12-13T07:03:51Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Settings */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without notices.&lt;br /&gt;
* The component keeps its settings in the registry because of API limitations.&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Initial release marked as v1.0. Very unstable.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22248</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22248"/>
		<updated>2010-12-13T07:02:48Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Limitations and known issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]].&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without notices.&lt;br /&gt;
* The component keeps its settings in the registry because of API limitations.&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Initial release marked as v1.0. Very unstable.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22247</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22247"/>
		<updated>2010-12-13T07:01:49Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
See the attachment in the [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 first post of the discussion thread].&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]],&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without notices.&lt;br /&gt;
* The component keeps its settings in the registry because of API limitations.&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Initial release marked as v1.0. Very unstable.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22246</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22246"/>
		<updated>2010-12-12T21:10:35Z</updated>

		<summary type="html">&lt;p&gt;Yegor: Download&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Download=&lt;br /&gt;
[http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]],&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without notices.&lt;br /&gt;
* The component keeps its settings in the registry because of API limitations.&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Initial release marked as v1.0. Very unstable.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22245</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22245"/>
		<updated>2010-12-12T21:04:44Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the [[Foobar2000:Preferences:Playback:DSP Manager|DSP Manager]] or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with [[Foobar2000:Preferences:General:Keyboard Shortcuts|keyboard shortcut binding]]&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the [[Foobar2000:Preferences:Output#Buffer_Length|size of the output buffer]],&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without notices.&lt;br /&gt;
* The component keeps its settings in the registry because of API limitations.&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Initial release marked as v1.0. Very unstable.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22244</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22244"/>
		<updated>2010-12-12T20:55:01Z</updated>

		<summary type="html">&lt;p&gt;Yegor: change log&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the DSP Manager or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with keyboard shortcut binding&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the size of the output buffer,&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without notices.&lt;br /&gt;
* The component keeps its settings in the registry because of API limitations.&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
=Change log=&lt;br /&gt;
&#039;&#039;&#039;0.52&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed the bug which could lead to crash after stopping the playback&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.51&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for no-reload track switching.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.5&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Added experimental support for non-modal config dialogs (View → DSP).&lt;br /&gt;
Added some formal procedures for some capricious plug-ins to work.&lt;br /&gt;
Added output number limitation setting&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.2&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Fixed major stability issues. Marked as v1.00.01.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;0.1&#039;&#039;&#039;&amp;lt;br/&amp;gt;&lt;br /&gt;
Initial release marked as v1.0. Very unstable.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22243</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22243"/>
		<updated>2010-12-12T20:36:25Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the DSP Manager or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with keyboard shortcut binding&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the size of the output buffer,&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
=Important notes=&lt;br /&gt;
* The adapter doesn&#039;t scan plug-ins at startup nor does it track changes in the VST directory. If some plug-in is absent then the adapter bypasses its processing without notices.&lt;br /&gt;
* The component keeps its settings in the registry because of API limitations.&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). All the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches to DSP implementation.&lt;br /&gt;
; &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&lt;br /&gt;
: Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
; &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
: The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
; &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
: In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22242</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22242"/>
		<updated>2010-12-12T20:11:21Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{fb2k}}&lt;br /&gt;
[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the DSP Manager or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with keyboard shortcut binding&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the size of the output buffer,&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). Al the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches.&lt;br /&gt;
* &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&amp;lt;br/&amp;gt;Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
* &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&amp;lt;br/&amp;gt;The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
* &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&amp;lt;br/&amp;gt;In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;br /&gt;
=External links=&lt;br /&gt;
* [http://www.kvraudio.com/get.php KVR: Audio Plug-in Database]&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Virtual_Studio_Technology VST in Wikipedia]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22241</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22241"/>
		<updated>2010-12-12T19:22:04Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{fb2k}}&lt;br /&gt;
[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the DSP Manager or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with keyboard shortcut binding&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Display goes ahead of audio by the size of the output buffer,&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
* There are two versions labeled as v1.0 and v1.0.01 which are actually v0.1 and v0.2.&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). Al the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches.&lt;br /&gt;
* &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&amp;lt;br/&amp;gt;Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
* &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&amp;lt;br/&amp;gt;The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
* &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&amp;lt;br/&amp;gt;In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000redirect:89C112F4-CDA2-4554-918A-E756EA608B94&amp;diff=22240</id>
		<title>Foobar2000redirect:89C112F4-CDA2-4554-918A-E756EA608B94</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000redirect:89C112F4-CDA2-4554-918A-E756EA608B94&amp;diff=22240"/>
		<updated>2010-12-12T19:10:23Z</updated>

		<summary type="html">&lt;p&gt;Yegor: Redirected page to Foobar2000:Components/VST adapter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Foobar2000:Components/VST_adapter]]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components&amp;diff=22239</id>
		<title>Foobar2000:Components</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components&amp;diff=22239"/>
		<updated>2010-12-12T17:26:09Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Format converters */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{title|foobar2000 Components}}&lt;br /&gt;
&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
This page contains most foobar2000 components available at time of history last update.&lt;br /&gt;
=Offical Components= &lt;br /&gt;
The following components are created and maintained by the foobar2000 development team. Support for them should be asked for in the [http://www.hydrogenaudio.org/forums/index.php?showforum=29 Support forum]&lt;br /&gt;
===Included in Installer===&lt;br /&gt;
[[Image:Optional_features.png|thumb|The Optional Features screen of the fb2k Installer]]&lt;br /&gt;
In addition to foobar2000&#039;s core functionality, the following components can be installed as needed, in the Optional Features section of the installer.&lt;br /&gt;
*Audio CD Support (foo_cdda) Adds Support for [[CD|Audio CD]] Playback&lt;br /&gt;
*Album List (foo_albumlist) Gives quick access to Media Library Content with customizable tree view&lt;br /&gt;
*Archive Reader (foo_unpack) Adds support for playing files directly from ZIP RAR and GZIP archives&lt;br /&gt;
*[[Foobar2000:Converter|Converter (foo_converter)]] Converts files to WAV or any other formats using command line encoders&lt;br /&gt;
*[[Foobar2000:File_operations|File Operations (foo_fileops)]] Renames, moves, or copies files according to specified patterns&lt;br /&gt;
*[[Foobar2000:Components_0.9/Freedb_Tagger_(foo_freedb2)|freedb Tagger (foo_freedb2)]] Tag retrieving support from freedb service for any set of files (mp3,mpc,flac,...-not only CDDA tracks)&lt;br /&gt;
*ReplayGain Scanner (foo_rgscan) advanced solution for volume matching&lt;br /&gt;
*Standard DSPs (foo_dsp_std) Equalizer, resampler, advanced limiter, hard limiter, stereo to 4 channel upmixer and a couple other effects&lt;br /&gt;
&lt;br /&gt;
===Additional Components===&lt;br /&gt;
These components are provided as separate downloads, found on the [http://www.foobar2000.org/components/author/Peter Additional Components page]. &lt;br /&gt;
*[[Foobar2000:Components_0.9/ABX_Comparator(foo_abx)|ABX comparator (foo_abx)]] component for double blind listening tests&lt;br /&gt;
*[[Foobar2000:Components 0.9/ALAC Decoder (foo_input_alac)|ALAC Decoder (foo_input_alac)]] Apple Lossless ([[ALAC]]) decoder&lt;br /&gt;
* [[Foobar2000:Components 0.9/ASIO Output (foo_out_asio)|ASIO output support (foo_out_asio)]] Adds ASIO output support.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Audio CD Writer (foo_burninate)|Audio CD Writer (foo_burninate)]] CD burning support&lt;br /&gt;
*[[Foobar2000:Components 0.9/Binary Comparator (foo_bitcompare)|Binary Comparator (foo_bitcompare)]] Performs binary comparison between two or more tracks and reports differences.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Decoding Speed Test (foo_benchmark)|Decoding Speed Test (foo_benchmark)]] Measures decoding speed of audio files.&lt;br /&gt;
* [[Foobar2000:Components 0.9/File Integrity Verifier (foo_verifier)|File Integrity Verifier (foo_verifier)]] Checks specified media files for decoding errors.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Convolve (foo_convolve)|Impulse response convolver (foo_convolve)]] Allows arbitrary effects to be captured and used inside foobar2000. ([http://www.hydrogenaudio.org/forums/index.php?showtopic=10611 More Info])&lt;br /&gt;
* [[Foobar2000:Components 0.9/Kernel Streaming Output (foo_out_ks)|Kernel Streaming support (foo_out_ks)]] Allows bit-exact playback bypassing Windows kernel mixer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Masstagger (foo_masstag)|Masstagger (foo_masstag)]] Automates various tag editing operations.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Monkey&#039;s Audio Decoder (foo_input_monkey)|Monkey&#039;s Audio Decoder (foo_input_monkey)]] Adds decoding support for Monkey&#039;s Audio files (.[[APE]]) as well as APE Link files (.[[APL]]).&lt;br /&gt;
*[[Foobar2000:Components/Playback Statistics v3.x (foo playcount)|Playback Statistics (foo playcount)]] Collects playback statistics for your Media Library content.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Quick Tagger (foo_quicktag)| Quick Tagger (foo_quicktag)]] Adds customizable context menu commands for quickly setting tag fields to preconfigured values&lt;br /&gt;
* [[Foobar2000:Components 0.9/Text Tools (foo texttools)|Text Tools (foo_texttools)]] Adds customizable context menu commands for copying information about the selected tracks to Windows Clipboard. &lt;br /&gt;
* [[Foobar2000:Components 0.9/WASAPI output support (foo_out_wasapi)|WASAPI output support (foo_out_wasapi)]] Adds Windows Audio Session API exclusive mode output support, allowing bit-exact output and muting all other sounds on Windows Vista and Windows 7 systems.&lt;br /&gt;
&lt;br /&gt;
=3rd Party Components=&lt;br /&gt;
The following components are created and maintained by 3rd-party authors, using foobar2000&#039;s [http://www.foobar2000.org/SDK.html SDK]. Support for these components should be asked for in the [http://www.hydrogenaudio.org/forums/index.php?showforum=33 3rd Party Plugins forum] Asking for help directly in the component&#039;s thread is usually preferred.&lt;br /&gt;
== User Interfaces ==&lt;br /&gt;
&lt;br /&gt;
=== Columns UI ===&lt;br /&gt;
[[Foobar2000:Components 0.9/Columns UI (foo_ui_columns)|Columns UI (foo_ui_columns)]] Very popular alternate interface for foobar2000 based on a columns and panel layout.&lt;br /&gt;
&lt;br /&gt;
Columns UI introduced components with [[#Panels|panel]] capability which extend the user interface.&lt;br /&gt;
&lt;br /&gt;
== User Interface Addons ==&lt;br /&gt;
=== UI Elements ===&lt;br /&gt;
The [[Foobar2000:Components 0.9/Default user interface (foo_ui_std)|default user interface (foo_ui_std)]], included in the standard installation package, can be extended with the following component(s):&lt;br /&gt;
* [[Foobar2000:Components 0.9/Facets (foo_facets)|Facets (foo_facets)]] Flexible media library viewer based on linked lists.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Text Display (foo_textdisplay)|Text Display (foo_textdisplay)]] Displays information about the playing or selected track.&lt;br /&gt;
* [[Foobar2000:Components/Waveform Seekbar (foo_wave_seekbar)|Waveform Seekbar (foo_wave_seekbar)]] Element for DUI with seekbar functionality on top of the waveform of the playing song.&lt;br /&gt;
* [[Foobar2000:Components/Quicksearch UI Element (foo quicksearch)|Quicksearch UI Element (foo_quicksearch)]] Search toolbar that sends results to a playlist.&lt;br /&gt;
* [[Foobar2000:Components/Playlist_Organizer_(foo_plorg)|Playlist Organizer (foo_plorg)]] Advanced playlist manager to organize playlists in a treeview.&lt;br /&gt;
&lt;br /&gt;
=== Panels ===&lt;br /&gt;
Panels extend the functionality of Columns UI components.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Album Art Panel (foo_uie_albumart)|Album Art Panel (foo_uie_albumart)]] Panel to display album art.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Album List Panel (foo_uie_albumlist)|Album List Panel (foo_uie_albumlist)]] Displays the database in a treeview using customizable sorting methods (by genre, artist, directory, etc.)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Bookmarks (foo_uie_bookmarks)|Bookmarks (foo_uie_bookmarks)]] Help you remember positions in songs.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Console (foo_uie_console)|Console (foo_uie_console)]] Panel version of console. Displays diagnostic messages. Requires Columns UI 0.1.3 beta 1 or newer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Cover Flow (foo_bubble_coverflow)|Cover Flow (foo_bubble_coverflow)]] The plugin can work either as a UI panel or a standalone window (found in the view menu), and a fullscreen mode for both.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Dockable Panels (foo_dockable_panels)|Dockable Panels (foo_dockable_panels)]] It allows you to create windows that host columns ui panels as floating windows that can be attached to the side of the main foobar2000 window or each other.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Egoh Spectrum Analyser (foo_uie_vis_egoh)|Egoh Spectrum Analyser (foo_uie_vis_egoh)]] Similar to the default spectrum analyser.&lt;br /&gt;
* [[Foobar2000:Components 0.9/ELplaylist panel (foo uie elplaylist)|ELplaylist panel (foo uie elplaylist)]] Playlist panel replacement with extensive customization options.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Explorer Panel (foo_uie_explorer)|Explorer Panel (foo_uie_explorer)]] Displays a treeview of selected disks/folders.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Graphical Browser (foo uie graphical browser) |Graphical Browser (foo uie graphical browser)]] A panel that allows to browse media library by graphical or text tiles &lt;br /&gt;
* [[Foobar2000:Components 0.9/Lyrics Panel (foo_uie_lyrics_panel)|Lyrics Panel (foo_uie_lyrics_panel)]] Display lyrics stored in file tags. &lt;br /&gt;
* [[Foobar2000:Components 0.9/Music Browser (foo_browser)|Music Browser (foo_browser)]] Panels for Browsing Library, Similar to iTunes. No longer updated. Most have better success CUI&#039;s in-built [[Foobar2000:Components_0.9/Columns_UI_%28foo_ui_columns%29#Playlist_filters|filters]].&lt;br /&gt;
* [[Foobar2000:Components 0.9/Panel Stack Splitter (foo uie panel splitter) | Panel Stack Splitter (foo_uie_panel_splitter)]] Allows you to place objects freely within the foobar2000 window, including panels, text, and images&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Dropdown (foo_uie_playlists_dropdown)|Playlist Dropdown (foo_uie_playlists_dropdown)]] Displays the playlist in a dropdown menu.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Tree (foo_playlist_tree)|Playlist Tree (foo_playlist_tree)]] Tree based media library with many available customizations.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Power Panels (foo_uie_powerpanels)|Power Panels (foo_uie_powerpanels)]] Seekbar and volume transparent version panels. Useful for theming.&lt;br /&gt;
* [[Foobar2000:Components 0.9/ProjectM Visualisation Panel (foo_uie_vis_projectM)|ProjectM Visualisation Panel (foo_uie_vis_projectM)]] Based on the ProjectM project, which is a reimplementation of Milkdrop under OpenGL.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Queue Manager (foo_uie_queuemanager)|Queue Manager (foo_uie_queuemanager)]] It provides a window that shows the queue&#039;s contents and allows you to delete parts of them or clear the whole queue.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Shpeck (foo_vis_shpeck)|Shpeck (foo_vis_shpeck)]] Winamp visualisation plugins wrapper.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Tabs (foo_uie_tabs)|Tabs (foo_uie_tabs)]] Tabs allows you to break Pauli&#039;s Exclusion principle by placing multiple panels in the same position at the same time.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Typefind (foo_typefind)|Typefind (foo_typefind)]] Provides some in-line search facilities.&lt;br /&gt;
* [[Foobar2000:Components/Waveform Seekbar (foo_wave_seekbar)|Waveform Seekbar (foo_wave_seekbar)]] Panel for CUI with seekbar functionality on top of the waveform of the playing song.&lt;br /&gt;
* [[Foobar2000:Components 0.9/WmpVis (foo_uie_wmpvis)|&amp;lt;span id=&amp;quot;wmpvis&amp;quot;&amp;gt;WmpVis (foo_uie_wmpvis)&amp;lt;/span&amp;gt;]] Uses the visualizations from WMP.&lt;br /&gt;
* [[Foobar2000:Components 0.9/WSH panel (foo_uie_wsh_panel)|WSH panel (foo_uie_wsh_panel)]] Windows script host panel.&lt;br /&gt;
&lt;br /&gt;
==DSP==&lt;br /&gt;
===Multichannel audio===&lt;br /&gt;
* [[Foobar2000:Components 0.9/ATSurround Processor (foo_dsp_atsurround)|ATSurround Processor (foo_dsp_atsurround)]] Reproduces surround sound information present in many stereo audio material and more.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Channel Mixer (foo_channel_mixer)|Channel Mixer (foo_channel_mixer)]] Up/down mix to/from 1-6 channels.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Dolby Pro Logic II wrapper (foo_dsp_pl2)|Dolby Pro Logic II wrapper (foo_dsp_pl2)]] Dolby Pro Logic II engine DLL (dll not included).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Downmix (foo_dsp_downmix)|Downmix (foo_dsp_downmix)]] Downmix [[AC3]], [[DTS]], etc. to stereo.&lt;br /&gt;
* [[Foobar2000:Components 0.9/FreeSurround (foo_dsp_fsurround)|FreeSurround (foo_dsp_fsurround)]] It takes Dolby Surround / Pro Logic I/II encoded stereo music and decodes it into 5.1 sound. &lt;br /&gt;
* [[Foobar2000:Components 0.9/Surround Pan (foo_dsp_span)|Surround Pan (foo_dsp_span)]] WYSIWYG Surround panning.&lt;br /&gt;
===Headphones===&lt;br /&gt;
* [[Foobar2000:Components 0.9/4Front Headphones (foo_dsp_headphones9)|4Front Headphones (foo_dsp_headphones9)]] Effects for headphone users.&lt;br /&gt;
* [[Foobar2000:Components 0.9/BS2D (foo_dsp_bs2p)|BS2D (foo_dsp_bs2p)]] Improves headphone listening of regular hi-fi stereo records.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Crossfeed (foo_dsp_crossfeed)|Crossfeed (foo_dsp_crossfeed)]] Filters the music to help reduce fatigue caused by listening to music with headphones.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Dolby Headphone Wrapper (foo_dsp_dolbyhp)|Dolby Headphone Wrapper (foo_dsp_dolbyhp)]] Dolby Headphone engine DLL.&lt;br /&gt;
===Utilities===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Post-track Silence (foo_dsp_silence)|Post-track Silence (foo_dsp_silence)]] Inserts a configurable amount of silence after each track to help external devices like MiniDisc players to sync track changes.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Voice Cut Filter (foo_dsp_centercut)|Voice Cut Filter (foo_dsp_centercut)]] Voice cut filter.&lt;br /&gt;
* [[Foobar2000:Components/Equalizer split (foo_dsp_eqsplit)|Equalizer split (foo_dsp_eqsplit)]] A meta-DSP that feeds each channel into a separate equalizer instance.&lt;br /&gt;
* [[Foobar2000:Components 0.9/XOver (foo_dsp_xover)|XOver (foo_dsp_xover)]] Implements this digital crossover to achieve active multi-amplification.&lt;br /&gt;
===Effects===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Soundtouch (foo_dsp_soundtouch)|Soundtouch (foo_dsp_soundtouch)]] Ajust pitch, tempo and rate.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Tube Sound (foo_dsp_tube)|Tube Sound (foo_dsp_tube)]] Emulate tube sound.&lt;br /&gt;
* [[Foobar2000:Components 0.9/VLevel (foo_dsp_vlevel)|VLevel (foo_dsp_vlevel)]] Dynamic compressor which amplifies the quiet parts of music.&lt;br /&gt;
===Converters===&lt;br /&gt;
* [[Foobar2000:Components/HDCD Decoder (foo_dsp_hdcd)|HDCD Decoder (foo_dsp_hdcd)]] This DSP component will decode HDCD data in any 16-bit PCM stream passed through it, resulting in 20-bit PCM.&lt;br /&gt;
* [[Foobar2000:Components 0.9/LPCM - Delta-PCM Converter (foo_dsp_delta)|LPCM - Delta-PCM Converter (foo_dsp_delta)]] Noise sharpening filter.&lt;br /&gt;
* [[Foobar2000:Components 0.9/SSRC (foo_dsp_ssrc)|SSRC (foo_dsp_ssrc)]] Sample rate converter.&lt;br /&gt;
&lt;br /&gt;
===Multi-purpose===&lt;br /&gt;
* [[Foobar2000:Components 0.9/OSS/3D (foo_dsp_oss3ddsp)|OSS/3D (foo_dsp_oss3ddsp)]] Audio enhancement. SHAREWARE.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Stereo Convolver (foo_dsp_stereoconv)|Stereo Convolver (foo_dsp_stereoconv)]] Take stereo audio and convolve each channel with two impulse responses.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Winamp DSP Bridge (foo_dsp_winamp)|Winamp DSP Bridge (foo_dsp_winamp)]] Allows the use of Winamp DSPs.&lt;br /&gt;
* [[Foobar2000:Components/VST adapter|VST 2.4 adapter (foo_vst)]] Allows Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
* [[Foobar2000:Components 0.9/George Yohng&#039;s VST Wrapper (foo_dsp_vstwrap)|George Yohng&#039;s VST Wrapper (foo_dsp_vstwrapper)]] Enables VST plug-ins.&lt;br /&gt;
* [[Foobar2000:Components 0.9/VST Host (foo_dsp_vst)|VST Host (foo_dsp_vst)]] Adds support to Virtual Studio Technology audio interface.&lt;br /&gt;
&lt;br /&gt;
==Input==&lt;br /&gt;
===Music Decoders===&lt;br /&gt;
* [[Foobar2000:Components 0.9/AC3 Decoder (foo_ac3)|AC3 Decoder (foo_ac3)]] Decodes Dolby Digital lossy audio compression technologies format ([[AC3]]).&lt;br /&gt;
* [[Foobar2000:Components 0.9/DTS Decoder (foo_dts)|DTS Decoder (foo_dts)]] Decodes Digital Theater Systems ([[DTS]]) audio format.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MIDI Synthesizer Host (foo_midi)|MIDI Synthesizer Host (foo_midi)]] Adds decoding support for General MIDI files (.MID) and RIFF MIDI files (.RMI) as well as several proprietary MIDI formats (.MIDS, .GMF, .HMI, .HMP, .MUS, .XMI).&lt;br /&gt;
* [[Foobar2000:Components 0.9/OptimFROG Lossless Audio Decoder (foo_input_ofr)|OptimFROG Lossless Audio Decoder (foo_input_ofr)]] Decodes both the Lossless ([[OptimFROG|OFR]]) and DualStream (OFS) audio format.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Shorten Decoder (foo_input_shorten)|Shorten Decoder (foo_input_shorten)]] Decodes Shorten ([[SHN]]) audio format.&lt;br /&gt;
* [[Foobar2000:Components 0.9/SPDIF Passthrough (foo_spdif)|SPDIF Passthrough (foo_spdif)]] SPDIF passthrough for [[AC3]] and [[DTS]] files.&lt;br /&gt;
* [[Foobar2000:Components 0.9/TAK Decoder (foo_input_tak)|TAK Decoder (foo_input_tak)]] Adds support for decoding and tagging [[TAK]] files as well as reading embedded album art.&lt;br /&gt;
* [[Foobar2000:Components/TTA Audio Decoder (foo_input_tta)|TTA Audio Decoder (foo_input_tta)]] Decodes True Audio ([[TTA]]) audio format.&lt;br /&gt;
&lt;br /&gt;
===Other Decoders===&lt;br /&gt;
* [[Foobar2000:Components 0.9/ADPCM Decoder (foo_adpcm)|ADPCM Decoder (foo_adpcm)]] Plays GameCube ADPCM audio data and some. (DSP, ADP, GCM, HPS, STM, AST, etc.)&lt;br /&gt;
* [[Foobar2000:Components 0.9/AdPlug decoder (foo_input_adplug)|AdPlug decoder (foo_input_adplug)]] Adds decoding support for all Adlib FM chip formats supported by the AdPlug library.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Another Slight Atari Player (foo_asap)|Another Slight Atari Player (foo_asap)]] [http://asap.sourceforge.net/ ASAP] is a player/converter of Atari 8-bit music for modern computers. It provides high-quality, identical to the popular Atari800 emulator, emulation of the POKEY sound chip and the 6502 processor.&lt;br /&gt;
* [[Foobar2000:Components 0.9/AviSynth decoder (foo_input_avs)|AviSynth decoder (foo_input_avs)]] Adds decoding support for AviSynth scripts (.AVS), audio only.&lt;br /&gt;
* [[Foobar2000:Components/DSDIFF Decoder (foo_input_dsdiff)|DSDIFF Decoder (foo_input_dsdiff)]] Adds decoding support for DSDIFF files (.DFF).&lt;br /&gt;
* [[Foobar2000:Components 0.9/DUMB Module Decoder (foo_dumb)|DUMB Module Decoder (foo_dumb)]] Plays your favorite module files, and then some. (MOD, S3M, XM, IT, 669, PTM, PSM, MTM, UMX)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Game Emu Player (foo_gep)|Game Emu Player (foo_gep)]] Plays several emulation formats. (GBS, NSF, SPC, GYM, HES, VGM)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Ganbatte! (foo_ganbatte)|Ganbatte! (foo_ganbatte)]] Plays compressed Edlib (.d00, .d01) files.&lt;br /&gt;
* [[Foobar2000:Components/Hively Tracker Decoder (foo_input_hvl)|Hively Tracker Decoder (foo_input_hvl)]] Adds decoding support for Hively Tracker files (.HVL) as well as Abyss&#039; Highest eXperience files (.AHX).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Lunar 2 PCM Decoder (foo_lunar2)|Lunar 2 PCM Decoder (foo_lunar2)]] Plays audio files found on the original Lunar: Eternal Blue CD (RP*.PCM).&lt;br /&gt;
* [[Foobar2000:Components 0.9/M1 Decoder (foo_m1)|M1 Decoder (foo_m1)]] Plays arcade/pinball game sound.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MDX Decoder (foo_input_mdx)|MDX Decoder (foo_input_mdx)]] MDX is a MIDI-like format that is designed to be played using the X68000&#039;s FM synthesizer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/NSF Decoder (foo_input_nsf)|NSF Decoder (foo_input_nsf)]] NSF file is a sound data file containing instructions for the Nintendo Entertainment System (NES) sound hardware.&lt;br /&gt;
* [[Foobar2000:Components 0.9/PSF Decoder (foo_psf)|PSF Decoder (foo_psf)]] Plays PlayStation Sound Format (PSF) files.&lt;br /&gt;
* [[Foobar2000:Components/QSF decoder (foo_input_qsf)|QSF decoder (foo_input_qsf)]] Adds decoding support for Capcom QSound Sound Format files (.QSF/.MINIQSF).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Reverse (foo_input_reverse)|Reverse (foo_input_reverse)]] Play music in reverse.&lt;br /&gt;
* [[Foobar2000:Components 0.9/SID Player 2 (foo_sid)|SID Player 2 (foo_sid)]] Sound chip of Commodore&#039;s CBM-II, Commodore 64 and Commodore 128 home computers.&lt;br /&gt;
* [[Foobar2000:Components 0.9/S98 Decoder (foo_input_s98)|S98 Decoder (foo_input_s98)]] Sound format for the NEC PC-98 microcomputer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/USF Decoder (foo_input_usf)|USF Decoder (foo_input_usf)]] Decodes sound data ripped directly from a Nintendo 64 video game.&lt;br /&gt;
&lt;br /&gt;
==Visualisation==&lt;br /&gt;
* [[Foobar2000:Components 0.9/Peakmeter (foo uie peakmeter)|Peakmeter for Columns UI (foo_uie_peakmeter)]] Displays the level for each channel in dB.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Peakmeter Spectrum (foo uie vis peakmeter spectrum)|Peakmeter and spectrum analyzer (foo_uie_vis_peakmeter_spectrum)]] Plugin that combines a peakmeter with a spectrum analyzer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/ProjectM Visualisation (foo_vis_projectM)|ProjectM Visualisation (foo_vis_projectM)]] Based on the ProjectM project, which is a reimplementation of Milkdrop under OpenGL.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Shpeck (foo_vis_shpeck)|Shpeck (foo_vis_shpeck)]] Winamp visualisation plugins wrapper.&lt;br /&gt;
* [[#wmpvis|WmpVis (foo_uie_wmpvis)]] Uses the visualizations from WMP. &#039;&#039;Panel version only&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Other==&lt;br /&gt;
===General===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Alarm (foo_alarm)|Alarm (foo_alarm)]] Starts playback at the specified period of time.&lt;br /&gt;
* [[Foobar2000:Components/Automatic BPM Analyser (foo_bpm)|Automatic BPM Analyser (foo_bpm)]] Automatically calculate the BPM of songs. Manual BPM calculation also available.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Autosave &amp;amp; Autobackup (foo_jesus)|Autosave &amp;amp; Autobackup (foo_jesus)]] Allows periodic automatic saving of configuration and other data in foobar2000 and keeping backup copies of such data.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Channel Usage Visualisation (foo_vis_channelusage)|Channel Usage Visualisation (foo_vis_channelusage)]] Channel Usage Visualisation.&lt;br /&gt;
* [[Foobar2000:Components 0.9/EXTM3U Playlist Creator (foo_extm3u)|EXTM3U Playlist Creator (foo_extm3u)]] Allow to save current playlist in the EXTM3U format.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Feature Watcher (foo_whatsnew)|Feature Watcher (foo_whatsnew)]] Watches for added or removed features.&lt;br /&gt;
* [[Foobar2000:Components 0.9/File Date (foo_filedate)|File Date (foo_filedate)]] Add to file tag date added, accessed, created or modified from context menu entries.&lt;br /&gt;
* [[Foobar2000:Components 0.9/HyperIM (foo_2hyperim)|HyperIM (foo_2hyperim)]] Provides 19 media macros.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Infospect (foo_infospect)|Infospect (foo_infospect)]] Displays low level playback information.&lt;br /&gt;
* [[Foobar2000:Components 0.9/iPod Manager (foo_dop)|iPod Manager (foo_dop)]] Experimental iPod plugin for foobar2000 0.9.2+, currently in alpha version.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Logitech G15 LCD Display (foo_g15lcd)|Logitech G15 LCD Display (foo_g15lcd)]] Control the LCD panel on a Logitech G15 keyboard.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Logitech LCD Display &amp;amp; Visualization (foo_logitech_lcd)|Logitech LCD Display &amp;amp; Visualization (foo_logitech_lcd)]] Customizable visualizations and track info on the LCD panel on a Logitech G15/G19/Z-10.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Menu Addons (foo_menu_addons)|Menu Addons (foo_menu_addons)]] Adds a few shortcuts in menu.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Open URL (foo_openurl)|Open URL (foo_openurl)]] Adds a context menu item to open URLs from metadata fields in a web browser.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Pause On Lock (foo_lock)|Pause On Lock (foo_lock)]] Pauses/unpauses foobar2000 on workstation lock/unlock.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Pause on Lock (extended) (foo_lock_ex)|Pause on Lock (extended) (foo_lock_ex)]] Pause playing on workstation lock. Optimized for use with Windows XP/2003.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Preview (foo_preview)|Preview (foo_preview)]] Play only part of each track in the playlist.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Replaygain Override (foo_rg_trn)|Replaygain Override (foo_rg_trn)]] Allows you to automatically switch between replaygain modes based on specified criteria (e.g. use track based RG for shuffle mode, etc.)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Run (foo_run)|Run (foo_run)]] Able you to run a external program with the foobar syntax.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Run Commands (foo_runcmd)|Run Commands (foo_runcmd)]] Search and execute menu commands.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Scheduler (foo_scheduler)|Scheduler (foo_scheduler)]] Plugin for scheduling actions like play, stop, system shutdown/wake up and many more.&lt;br /&gt;
* [[Foobar2000:Components/Seekbox (foo_seek_box)|Seekbox (foo_seek_box)]] Main menu item that pops up a box for seeking to a particular hh:mm:ss time in the current track. &lt;br /&gt;
* [[Foobar2000:Components 0.9/Send To Device (foo_sendtodevice)|Send To Device (foo_sendtodevice)]] Add &amp;quot;Send to Device&amp;quot; feature.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Shell Link Resolver (foo_lnk)|Shell Link Resolver (foo_lnk)]] Shell link resolver.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Timebomb (foo_timebomb)|Timebomb (foo_timebomb)]] Stop playback / exit program after a specified time.&lt;br /&gt;
* [[Foobar2000:Components/Unix archive support (foo_unpack_unix)|Unix archive support (foo_unpack_unix)]] Adds support for reading from Unix Tape Archives (.TAR), gzip files (.GZ), and bzip2 files (.BZ2).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Unpacker for 7-Zip archive (foo_unpack_7z) |Unpacker for 7-Zip archive (foo_unpack_7z)]]&lt;br /&gt;
* [[Foobar2000:Components 0.9/Unpacker for JMA archive (foo_unpack_jma)|Unpacker for JMA archive (foo_unpack_jma)]]&lt;br /&gt;
* [[Foobar2000:Components 0.9/Unpacker for LHA archive (foo_unpack_lha)|Unpacker for LHA archive (foo_unpack_lha)]]&lt;br /&gt;
* [[Foobar2000:Components/UPnP/DLNA Renderer, Server, Control Point (foo_upnp)|UPnP/DLNA Renderer, Server, Control Point (foo_upnp)]]&lt;br /&gt;
* [[Foobar2000:Components 0.9/Winamp API Emulator (foo_winamp_spam)|Winamp API Emulator (foo_winamp_spam)]] Designed to create a fake Winamp 1.x window which will act as a wrapper between applications written to use the Winamp API and foobar2000.&lt;br /&gt;
&lt;br /&gt;
===Lyrics===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Gasazip Lyrics (foo_gasazip)|Gasazip Lyrics (foo_gasazip)]] Search for lyrics and displays it in external window.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Lyrics Show 2(foo_uie_lyrics2)|Lyrics Show 2(foo_uie_lyrics2)]] Downloads and displays lyrics, with LRC/timestamp support.&lt;br /&gt;
* [[Foobar2000:Components 0.9/LyricsDB (foo_lyricsdb)|LyricsDB (foo_lyricsdb)]] Search lyrics basing on song&#039;s artist title and sometimes album.&lt;br /&gt;
* [[Foobar2000:Components 0.9/foo_lyricsgrabber2|Lyrics Grabber 2 (foo_lyricsgrabber2)]] Downloads lyrics and stores them in tags.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Mini Lyrics (foo_ui_minilyrics)|Mini Lyrics (foo_ui_minilyrics)]] Lyrics viewer for synchronizing and displaying lyrics of the currently playing song.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Sakura Script Lyrics (foo_sstp_lyrics)|Sakura Script Lyrics (foo_sstp_lyrics)]] Plays a SAKURA script lyrics to a SSP client.&lt;br /&gt;
&lt;br /&gt;
===Notifier===&lt;br /&gt;
* [[Foobar2000:Components 0.9/AMIP Wrapper (foo_amipwrapper)|AMIP Wrapper (foo_amipwrapper)]] Complete now-playing plug-in for mIRC, PIRCH, Klient, Bersirc, other IRC and Mail clients, supporting full player control from mIRC, playlist search, clipboard integration, HTTP, dynamic image signatures, etc.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Listening To (foo_listeningto)|Listening To (foo_listeningto)]] Sends NowPlaying information to Miranda IM.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Miranda IM Notifier (foo_mim_notify)|Miranda IM Notifier (foo_mim_notify)]] Sends configurable information about the current playing song to Miranda-IM and shows popup windows with this info.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MSN avatar changer (foo_uie_albumart_msn)|MSN avatar changer (foo_uie_albumart_msn)]] Set currently playing song&#039;s album art as avatar.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MSN Now Playing (alt) (foo_msnalt)|MSN Now Playing (alt) (foo_msnalt)]] Show the current song as &amp;quot;Now Playing&amp;quot; in MSN and Windows Live messenger.&lt;br /&gt;
* [[Foobar2000:Components_0.9/WLM_Notifier_(foo_wlm)|Windows Live Notifier (foo_wlm)]] Shows current song as &amp;quot;Now Playing&amp;quot; in in MSN Messenger and Windows Live messenger (WLM). Supports unicode.&lt;br /&gt;
* [[Foobar2000:Components 0.9/On-Screen Display (foo_osd)|On-Screen Display (foo_osd)]] On screen display of track information and volume bar.&lt;br /&gt;
* [[Foobar2000:Components 0.9/On-Screen Display GDI (foo_osd_gdiplus)|On-Screen Display GDI (foo_osd_gdiplus)]] Same as foo_osd but uses GDI+ for osd drawing.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Pretty Popup (foo_prettypop)|Pretty Popup (foo_prettypop)]] Display a moderately sized popup of song information when a new song plays.&lt;br /&gt;
&lt;br /&gt;
===Online database===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Audioscrobbler (foo_audioscrobbler)|Audioscrobbler (foo_audioscrobbler)]] Audioscrobbler will send the name of every song you play on your computer to Last.fm. This effortlessly populates your profile to play radio you like and make personalized recommendations.&lt;br /&gt;
&lt;br /&gt;
===Online radio===&lt;br /&gt;
* [[Foobar2000:Components/Podcatcher (foo_podcatcher)|Podcatcher (foo_podcatcher)]] A podcatcher component for subscribing to, downloading, and playing RSS and Atom podcast feeds in foobar2000.&lt;br /&gt;
* [[Foobar2000:Components/Vorbis Streamer (foo_vorbisstream)|Vorbis Streamer (foo_vorbisstream)]] Streams Vorbis and associated metadata to Icecast2 and Shoutcast servers.&lt;br /&gt;
* [[Foobar2000:Components 0.9/XM Radio Online Player (foo_xm)|XM Radio Online Player (foo_xm)]] Allow you to listen to XM Radio channels over the Internet by using XM Radio Online.&lt;br /&gt;
&lt;br /&gt;
===Playlist tools===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Audioscrobble Charts (foo_scrobblecharts)|Audioscrobble Charts (foo_scrobblecharts)]] Generate a playlist from an artist&#039;s Last.fm chart. It also allows you to sort a selection in the playlist by the artist&#039;s charts.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Bin Pack (foo_binpack)|Bin Pack (foo_binpack)]] Creates playlists from a list with a maximum length.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Command Playlist (foo_cmd_playlist)|Command Playlist (foo_cmd_playlist)]] Add /playlist-activate:&amp;quot;Name&amp;quot; to the foobar command line to activate the named playlist.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Cuesheet Creator (foo_cuesheet_creator)|Cuesheet Creator (foo_cuesheet_creator)]] Cuesheet creator.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Database Search (foo_dbsearch)|Database Search (foo_dbsearch)]] Database search.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Default Video Player (foo_default_videoplayer)|Default Video Player (foo_default_videoplayer)]] Allows you to play your video clips from foobar playlist with default external player.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Delete Current (foo_deletecurrent)|Delete Current (foo_deletecurrent)]] Adds a menu item giving the possibility to delete from computer the current playing track.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Highlight Playing (foo_highlightplaying)|Highlight Playing (foo_highlightplaying)]] Highlights actual now playing item even when the playlist has been broken.&lt;br /&gt;
* [[Foobar2000:Components 0.9/History (foo_history)|History (foo_history)]] Very basic song history.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Inactive Tracks (foo_skip)|Inactive Tracks (foo_skip)]] Skips tracks that are marked via a tag as inactive.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MeowDB (foo_meowdb)|MeowDB (foo_meowdb)]] Takes the Media Library and outputs the results to a form and uploads it to your server using the cURL library.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Navigator (foo_navigator)|Navigator (foo_navigator)]] Advanced history component.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Now Playing Simple (foo_np_simple)|Now Playing Simple (foo_np_simple)]] Simple now playing plugin to output formatted string to plain text file.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playback Queue Viewer (foo_pqview)|Playback Queue Viewer (foo_pqview)]] Playback queue viewer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Bind (foo_playlist_bind)|Playlist Bind (foo_playlist_bind)]] Synchronize playlist with contents of specific directory.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Clear (foo_playlistclear)|Playlist Clear (foo_playlistclear)]] All playlists are cleared at startup.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Manager (foo_playlist_manager)|Playlist Manager (foo_playlist_manager)]] Playlist manager.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Name Enhenced (foo_playlist_name_enhanced)|Playlist Name Enhenced (foo_playlist_name_enhanced)]] Appends automatically playlist info (&amp;quot;items / length&amp;quot;) to all playlist names.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Tools (foo_utils)|Playlist Tools (foo_utils)]] Provides various general commands.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Tools for Matroska (foo_utils_mka)|Playlist Tools for Matroska (foo_utils_mka)]] Provides various general commands.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Queue Manager (foo_queuemanager)|Queue Manager (foo_queuemanager)]] It provides a window that shows the queue&#039;s contents and allows you to delete parts of them or clear the whole queue. &#039;&#039;Non-ColumnUI obsolete version, try panel version instead.&#039;&#039;&lt;br /&gt;
* [[Foobar2000:Components 0.9/Randomized Playlist Entry (foo_random)|Randomized Playlist Entry (foo_random)]] Randomized playlist entry.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Rating (foo_rating)|Rating (foo_rating)]] Display an icon in the systray with a tooltip popup from which you can choose a rating between 1 and 5 for the currently playing file.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Remove Played (foo_removeplayed)|Remove Played (foo_removeplayed)]] It removes tracks from the playlist once they&#039;ve been played.&lt;br /&gt;
* [[Foobar2000:Components/Soft Playlists (foo_softplaylists)|Soft Playlists (foo_softplaylists)]] Can create different Last.fm related playlists, love tracks on Last.fm and save and load XSPF playlists (make playlists without hard paths).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Track Finder (foo_trackfinder)|Track Finder (foo_trackfinder)]] Displays a context menu that lets you quickly find songs based on their album title or artists name.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Track Position (foo_trackpos)|Track Position (foo_trackpos)]] Provides a new context menu item &amp;quot;place after current playing&amp;quot;, that allows you to place any tracks after the current playing one in the playing playlist.&lt;br /&gt;
* [[Foobar2000:Components 0.9/XSPF (foo_xspf)|XSPF (foo_xspf)]] Adds XSPF support. XSPF is an open, XML based playlist format.&lt;br /&gt;
&lt;br /&gt;
===Playback Statistics===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playback Statistics Custom (foo_playback_custom)|Playback Statistics Custom (foo_playback_custom)]] Stores playback statistics in tags like foo_playcount_mod, with claimed faster response, and uses foo_custominfo db if file is unavailable for writing.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Play Count Mod (foo_playcount_mod)|Play Count Mod (foo_playcount_mod)]] Unofficial playcount modded to supress the update tag popups.&lt;br /&gt;
&lt;br /&gt;
===Remote control===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Advanced Controls (foo_advancedcontrols)|Advanced Controls (foo_advancedcontrols)]]  Control all the playback functions from icons in the Taskbar Notification Area (play, pause, next, previous, open)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Bluetooth Control (foo_bluetooth_ctrl)|Bluetooth Control (foo_bluetooth_ctrl)]] Control your favourite music player using your favourite Symbian-based bluetooth enabled phone.&lt;br /&gt;
* [[Foobar2000:Components 0.9/COM Automation Server (foo_comserver2)|COM Automation Server (foo_comserver2)]] Allows controlling foobar2000 through COM Automation&lt;br /&gt;
* [[Foobar2000:Components 0.9/Control Server (foo_controlserver)|Control Server (foo_controlserver)]] Acts as a server to control Foobar2000. Connect with a telnet client and control it using ASCII commands.&lt;br /&gt;
* [[Foobar2000:Components 0.9/DDE Control (foo_ddecontrol)|DDE Control (foo_ddecontrol)]] Control foobar remotelly with DDE interprocess communication (interface in japanese only).&lt;br /&gt;
* [[Foobar2000:Components 0.9/HTTP Writer (foo_write_http)|HTTP Writer (foo_write_http)]] It&#039;s TCP/IP server that listens on a specified port for incoming requests such as play, stop, etc.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Joystick Control (foo_joystick_control)|Joystick Control (foo_joystick_control)]] Control foobar2000 from a joystick/gamepad.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Minibar2k (foo_Minibar2k)|Minibar2k (foo_Minibar2k)]] Control Foobar2k from your PDA (PocketPC based).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Remote Control (foo_remotecontrol)|Remote Control (foo_remotecontrol)]] Adds support to Melloware Intelliremote software which claims to work with Creative remote control (Soundblaster Live!, Audigy, Extigy, Audigy ZS and Soundblaster X-Fi.)&lt;br /&gt;
* [[Foobar2000:Components 0.9/RM-1800 (foo_mr1800)|RM-1800 (foo_mr1800)]] Adds support of Creative X-Fi&#039;s remote (RM-1800).&lt;br /&gt;
* [[Foobar2000:Components 0.9/RM-X Media Edition (foo_rmx)|RM-X Media Edition (foo_rmx)]] Yet another plugin for remote control. SHAREWARE.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Titlebar (foo_managedWrapper)|Titlebar (foo_managedWrapper)]] Create a personal title bar that shows the currently playing song on the top of the screen all the time. It supports custom-made skins.&lt;br /&gt;
* [[Foobar2000:Components 0.9/WinLIRC Client (foo_lirc)|WinLIRC Client (foo_lirc)]] Control Foobar from a remote control.&lt;br /&gt;
&lt;br /&gt;
===Tagging===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Chacon (foo_chacon)|Chacon (foo_chacon)]] Chacon is a simple tool for fixing tags by converting them between different character sets.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Custom Info (foo_custominfo)|Custom Info (foo_custominfo)]] Allows you to set info fields for files without modifying them. &lt;br /&gt;
* [[Foobar2000:Components 0.9/Discogs (foo_discogs)|Discogs (foo_discogs)]] Retrieve info and album art from Discogs.com database.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Freedb Tagger (foo_freedb2)|Freedb Tagger (foo_freedb2)]] Freedb.org tagger. Now included with official foobar2000 installers.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Live Show Tagger (foo_tradersfriend)|Live Show Tagger (foo_tradersfriend)]] Live show tagger.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
* [http://www.foobar2000.org/components Official third-party components site]&lt;br /&gt;
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=42730&amp;amp;st=0 List of components] from earlier versions not yet ported to 0.9.x.&lt;br /&gt;
&lt;br /&gt;
* [[foobar2000:foobar2000|Go back to Main Page]]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components&amp;diff=22238</id>
		<title>Foobar2000:Components</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components&amp;diff=22238"/>
		<updated>2010-12-12T17:24:52Z</updated>

		<summary type="html">&lt;p&gt;Yegor: /* Multi-purpose */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{title|foobar2000 Components}}&lt;br /&gt;
&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
This page contains most foobar2000 components available at time of history last update.&lt;br /&gt;
=Offical Components= &lt;br /&gt;
The following components are created and maintained by the foobar2000 development team. Support for them should be asked for in the [http://www.hydrogenaudio.org/forums/index.php?showforum=29 Support forum]&lt;br /&gt;
===Included in Installer===&lt;br /&gt;
[[Image:Optional_features.png|thumb|The Optional Features screen of the fb2k Installer]]&lt;br /&gt;
In addition to foobar2000&#039;s core functionality, the following components can be installed as needed, in the Optional Features section of the installer.&lt;br /&gt;
*Audio CD Support (foo_cdda) Adds Support for [[CD|Audio CD]] Playback&lt;br /&gt;
*Album List (foo_albumlist) Gives quick access to Media Library Content with customizable tree view&lt;br /&gt;
*Archive Reader (foo_unpack) Adds support for playing files directly from ZIP RAR and GZIP archives&lt;br /&gt;
*[[Foobar2000:Converter|Converter (foo_converter)]] Converts files to WAV or any other formats using command line encoders&lt;br /&gt;
*[[Foobar2000:File_operations|File Operations (foo_fileops)]] Renames, moves, or copies files according to specified patterns&lt;br /&gt;
*[[Foobar2000:Components_0.9/Freedb_Tagger_(foo_freedb2)|freedb Tagger (foo_freedb2)]] Tag retrieving support from freedb service for any set of files (mp3,mpc,flac,...-not only CDDA tracks)&lt;br /&gt;
*ReplayGain Scanner (foo_rgscan) advanced solution for volume matching&lt;br /&gt;
*Standard DSPs (foo_dsp_std) Equalizer, resampler, advanced limiter, hard limiter, stereo to 4 channel upmixer and a couple other effects&lt;br /&gt;
&lt;br /&gt;
===Additional Components===&lt;br /&gt;
These components are provided as separate downloads, found on the [http://www.foobar2000.org/components/author/Peter Additional Components page]. &lt;br /&gt;
*[[Foobar2000:Components_0.9/ABX_Comparator(foo_abx)|ABX comparator (foo_abx)]] component for double blind listening tests&lt;br /&gt;
*[[Foobar2000:Components 0.9/ALAC Decoder (foo_input_alac)|ALAC Decoder (foo_input_alac)]] Apple Lossless ([[ALAC]]) decoder&lt;br /&gt;
* [[Foobar2000:Components 0.9/ASIO Output (foo_out_asio)|ASIO output support (foo_out_asio)]] Adds ASIO output support.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Audio CD Writer (foo_burninate)|Audio CD Writer (foo_burninate)]] CD burning support&lt;br /&gt;
*[[Foobar2000:Components 0.9/Binary Comparator (foo_bitcompare)|Binary Comparator (foo_bitcompare)]] Performs binary comparison between two or more tracks and reports differences.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Decoding Speed Test (foo_benchmark)|Decoding Speed Test (foo_benchmark)]] Measures decoding speed of audio files.&lt;br /&gt;
* [[Foobar2000:Components 0.9/File Integrity Verifier (foo_verifier)|File Integrity Verifier (foo_verifier)]] Checks specified media files for decoding errors.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Convolve (foo_convolve)|Impulse response convolver (foo_convolve)]] Allows arbitrary effects to be captured and used inside foobar2000. ([http://www.hydrogenaudio.org/forums/index.php?showtopic=10611 More Info])&lt;br /&gt;
* [[Foobar2000:Components 0.9/Kernel Streaming Output (foo_out_ks)|Kernel Streaming support (foo_out_ks)]] Allows bit-exact playback bypassing Windows kernel mixer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Masstagger (foo_masstag)|Masstagger (foo_masstag)]] Automates various tag editing operations.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Monkey&#039;s Audio Decoder (foo_input_monkey)|Monkey&#039;s Audio Decoder (foo_input_monkey)]] Adds decoding support for Monkey&#039;s Audio files (.[[APE]]) as well as APE Link files (.[[APL]]).&lt;br /&gt;
*[[Foobar2000:Components/Playback Statistics v3.x (foo playcount)|Playback Statistics (foo playcount)]] Collects playback statistics for your Media Library content.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Quick Tagger (foo_quicktag)| Quick Tagger (foo_quicktag)]] Adds customizable context menu commands for quickly setting tag fields to preconfigured values&lt;br /&gt;
* [[Foobar2000:Components 0.9/Text Tools (foo texttools)|Text Tools (foo_texttools)]] Adds customizable context menu commands for copying information about the selected tracks to Windows Clipboard. &lt;br /&gt;
* [[Foobar2000:Components 0.9/WASAPI output support (foo_out_wasapi)|WASAPI output support (foo_out_wasapi)]] Adds Windows Audio Session API exclusive mode output support, allowing bit-exact output and muting all other sounds on Windows Vista and Windows 7 systems.&lt;br /&gt;
&lt;br /&gt;
=3rd Party Components=&lt;br /&gt;
The following components are created and maintained by 3rd-party authors, using foobar2000&#039;s [http://www.foobar2000.org/SDK.html SDK]. Support for these components should be asked for in the [http://www.hydrogenaudio.org/forums/index.php?showforum=33 3rd Party Plugins forum] Asking for help directly in the component&#039;s thread is usually preferred.&lt;br /&gt;
== User Interfaces ==&lt;br /&gt;
&lt;br /&gt;
=== Columns UI ===&lt;br /&gt;
[[Foobar2000:Components 0.9/Columns UI (foo_ui_columns)|Columns UI (foo_ui_columns)]] Very popular alternate interface for foobar2000 based on a columns and panel layout.&lt;br /&gt;
&lt;br /&gt;
Columns UI introduced components with [[#Panels|panel]] capability which extend the user interface.&lt;br /&gt;
&lt;br /&gt;
== User Interface Addons ==&lt;br /&gt;
=== UI Elements ===&lt;br /&gt;
The [[Foobar2000:Components 0.9/Default user interface (foo_ui_std)|default user interface (foo_ui_std)]], included in the standard installation package, can be extended with the following component(s):&lt;br /&gt;
* [[Foobar2000:Components 0.9/Facets (foo_facets)|Facets (foo_facets)]] Flexible media library viewer based on linked lists.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Text Display (foo_textdisplay)|Text Display (foo_textdisplay)]] Displays information about the playing or selected track.&lt;br /&gt;
* [[Foobar2000:Components/Waveform Seekbar (foo_wave_seekbar)|Waveform Seekbar (foo_wave_seekbar)]] Element for DUI with seekbar functionality on top of the waveform of the playing song.&lt;br /&gt;
* [[Foobar2000:Components/Quicksearch UI Element (foo quicksearch)|Quicksearch UI Element (foo_quicksearch)]] Search toolbar that sends results to a playlist.&lt;br /&gt;
* [[Foobar2000:Components/Playlist_Organizer_(foo_plorg)|Playlist Organizer (foo_plorg)]] Advanced playlist manager to organize playlists in a treeview.&lt;br /&gt;
&lt;br /&gt;
=== Panels ===&lt;br /&gt;
Panels extend the functionality of Columns UI components.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Album Art Panel (foo_uie_albumart)|Album Art Panel (foo_uie_albumart)]] Panel to display album art.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Album List Panel (foo_uie_albumlist)|Album List Panel (foo_uie_albumlist)]] Displays the database in a treeview using customizable sorting methods (by genre, artist, directory, etc.)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Bookmarks (foo_uie_bookmarks)|Bookmarks (foo_uie_bookmarks)]] Help you remember positions in songs.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Console (foo_uie_console)|Console (foo_uie_console)]] Panel version of console. Displays diagnostic messages. Requires Columns UI 0.1.3 beta 1 or newer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Cover Flow (foo_bubble_coverflow)|Cover Flow (foo_bubble_coverflow)]] The plugin can work either as a UI panel or a standalone window (found in the view menu), and a fullscreen mode for both.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Dockable Panels (foo_dockable_panels)|Dockable Panels (foo_dockable_panels)]] It allows you to create windows that host columns ui panels as floating windows that can be attached to the side of the main foobar2000 window or each other.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Egoh Spectrum Analyser (foo_uie_vis_egoh)|Egoh Spectrum Analyser (foo_uie_vis_egoh)]] Similar to the default spectrum analyser.&lt;br /&gt;
* [[Foobar2000:Components 0.9/ELplaylist panel (foo uie elplaylist)|ELplaylist panel (foo uie elplaylist)]] Playlist panel replacement with extensive customization options.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Explorer Panel (foo_uie_explorer)|Explorer Panel (foo_uie_explorer)]] Displays a treeview of selected disks/folders.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Graphical Browser (foo uie graphical browser) |Graphical Browser (foo uie graphical browser)]] A panel that allows to browse media library by graphical or text tiles &lt;br /&gt;
* [[Foobar2000:Components 0.9/Lyrics Panel (foo_uie_lyrics_panel)|Lyrics Panel (foo_uie_lyrics_panel)]] Display lyrics stored in file tags. &lt;br /&gt;
* [[Foobar2000:Components 0.9/Music Browser (foo_browser)|Music Browser (foo_browser)]] Panels for Browsing Library, Similar to iTunes. No longer updated. Most have better success CUI&#039;s in-built [[Foobar2000:Components_0.9/Columns_UI_%28foo_ui_columns%29#Playlist_filters|filters]].&lt;br /&gt;
* [[Foobar2000:Components 0.9/Panel Stack Splitter (foo uie panel splitter) | Panel Stack Splitter (foo_uie_panel_splitter)]] Allows you to place objects freely within the foobar2000 window, including panels, text, and images&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Dropdown (foo_uie_playlists_dropdown)|Playlist Dropdown (foo_uie_playlists_dropdown)]] Displays the playlist in a dropdown menu.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Tree (foo_playlist_tree)|Playlist Tree (foo_playlist_tree)]] Tree based media library with many available customizations.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Power Panels (foo_uie_powerpanels)|Power Panels (foo_uie_powerpanels)]] Seekbar and volume transparent version panels. Useful for theming.&lt;br /&gt;
* [[Foobar2000:Components 0.9/ProjectM Visualisation Panel (foo_uie_vis_projectM)|ProjectM Visualisation Panel (foo_uie_vis_projectM)]] Based on the ProjectM project, which is a reimplementation of Milkdrop under OpenGL.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Queue Manager (foo_uie_queuemanager)|Queue Manager (foo_uie_queuemanager)]] It provides a window that shows the queue&#039;s contents and allows you to delete parts of them or clear the whole queue.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Shpeck (foo_vis_shpeck)|Shpeck (foo_vis_shpeck)]] Winamp visualisation plugins wrapper.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Tabs (foo_uie_tabs)|Tabs (foo_uie_tabs)]] Tabs allows you to break Pauli&#039;s Exclusion principle by placing multiple panels in the same position at the same time.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Typefind (foo_typefind)|Typefind (foo_typefind)]] Provides some in-line search facilities.&lt;br /&gt;
* [[Foobar2000:Components/Waveform Seekbar (foo_wave_seekbar)|Waveform Seekbar (foo_wave_seekbar)]] Panel for CUI with seekbar functionality on top of the waveform of the playing song.&lt;br /&gt;
* [[Foobar2000:Components 0.9/WmpVis (foo_uie_wmpvis)|&amp;lt;span id=&amp;quot;wmpvis&amp;quot;&amp;gt;WmpVis (foo_uie_wmpvis)&amp;lt;/span&amp;gt;]] Uses the visualizations from WMP.&lt;br /&gt;
* [[Foobar2000:Components 0.9/WSH panel (foo_uie_wsh_panel)|WSH panel (foo_uie_wsh_panel)]] Windows script host panel.&lt;br /&gt;
&lt;br /&gt;
==DSP==&lt;br /&gt;
===Multichannel audio===&lt;br /&gt;
* [[Foobar2000:Components 0.9/ATSurround Processor (foo_dsp_atsurround)|ATSurround Processor (foo_dsp_atsurround)]] Reproduces surround sound information present in many stereo audio material and more.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Channel Mixer (foo_channel_mixer)|Channel Mixer (foo_channel_mixer)]] Up/down mix to/from 1-6 channels.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Dolby Pro Logic II wrapper (foo_dsp_pl2)|Dolby Pro Logic II wrapper (foo_dsp_pl2)]] Dolby Pro Logic II engine DLL (dll not included).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Downmix (foo_dsp_downmix)|Downmix (foo_dsp_downmix)]] Downmix [[AC3]], [[DTS]], etc. to stereo.&lt;br /&gt;
* [[Foobar2000:Components 0.9/FreeSurround (foo_dsp_fsurround)|FreeSurround (foo_dsp_fsurround)]] It takes Dolby Surround / Pro Logic I/II encoded stereo music and decodes it into 5.1 sound. &lt;br /&gt;
* [[Foobar2000:Components 0.9/Surround Pan (foo_dsp_span)|Surround Pan (foo_dsp_span)]] WYSIWYG Surround panning.&lt;br /&gt;
===Headphones===&lt;br /&gt;
* [[Foobar2000:Components 0.9/4Front Headphones (foo_dsp_headphones9)|4Front Headphones (foo_dsp_headphones9)]] Effects for headphone users.&lt;br /&gt;
* [[Foobar2000:Components 0.9/BS2D (foo_dsp_bs2p)|BS2D (foo_dsp_bs2p)]] Improves headphone listening of regular hi-fi stereo records.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Crossfeed (foo_dsp_crossfeed)|Crossfeed (foo_dsp_crossfeed)]] Filters the music to help reduce fatigue caused by listening to music with headphones.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Dolby Headphone Wrapper (foo_dsp_dolbyhp)|Dolby Headphone Wrapper (foo_dsp_dolbyhp)]] Dolby Headphone engine DLL.&lt;br /&gt;
===Utilities===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Post-track Silence (foo_dsp_silence)|Post-track Silence (foo_dsp_silence)]] Inserts a configurable amount of silence after each track to help external devices like MiniDisc players to sync track changes.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Voice Cut Filter (foo_dsp_centercut)|Voice Cut Filter (foo_dsp_centercut)]] Voice cut filter.&lt;br /&gt;
* [[Foobar2000:Components/Equalizer split (foo_dsp_eqsplit)|Equalizer split (foo_dsp_eqsplit)]] A meta-DSP that feeds each channel into a separate equalizer instance.&lt;br /&gt;
* [[Foobar2000:Components 0.9/XOver (foo_dsp_xover)|XOver (foo_dsp_xover)]] Implements this digital crossover to achieve active multi-amplification.&lt;br /&gt;
===Effects===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Soundtouch (foo_dsp_soundtouch)|Soundtouch (foo_dsp_soundtouch)]] Ajust pitch, tempo and rate.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Tube Sound (foo_dsp_tube)|Tube Sound (foo_dsp_tube)]] Emulate tube sound.&lt;br /&gt;
* [[Foobar2000:Components 0.9/VLevel (foo_dsp_vlevel)|VLevel (foo_dsp_vlevel)]] Dynamic compressor which amplifies the quiet parts of music.&lt;br /&gt;
===Format converters===&lt;br /&gt;
* [[Foobar2000:Components/HDCD Decoder (foo_dsp_hdcd)|HDCD Decoder (foo_dsp_hdcd)]] This DSP component will decode HDCD data in any 16-bit PCM stream passed through it, resulting in 20-bit PCM.&lt;br /&gt;
* [[Foobar2000:Components 0.9/LPCM - Delta-PCM Converter (foo_dsp_delta)|LPCM - Delta-PCM Converter (foo_dsp_delta)]] Noise sharpening filter.&lt;br /&gt;
* [[Foobar2000:Components 0.9/SSRC (foo_dsp_ssrc)|SSRC (foo_dsp_ssrc)]] Sample rate converter.&lt;br /&gt;
===Multi-purpose===&lt;br /&gt;
* [[Foobar2000:Components 0.9/OSS/3D (foo_dsp_oss3ddsp)|OSS/3D (foo_dsp_oss3ddsp)]] Audio enhancement. SHAREWARE.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Stereo Convolver (foo_dsp_stereoconv)|Stereo Convolver (foo_dsp_stereoconv)]] Take stereo audio and convolve each channel with two impulse responses.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Winamp DSP Bridge (foo_dsp_winamp)|Winamp DSP Bridge (foo_dsp_winamp)]] Allows the use of Winamp DSPs.&lt;br /&gt;
* [[Foobar2000:Components/VST adapter|VST 2.4 adapter (foo_vst)]] Allows Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
* [[Foobar2000:Components 0.9/George Yohng&#039;s VST Wrapper (foo_dsp_vstwrap)|George Yohng&#039;s VST Wrapper (foo_dsp_vstwrapper)]] Enables VST plug-ins.&lt;br /&gt;
* [[Foobar2000:Components 0.9/VST Host (foo_dsp_vst)|VST Host (foo_dsp_vst)]] Adds support to Virtual Studio Technology audio interface.&lt;br /&gt;
&lt;br /&gt;
==Input==&lt;br /&gt;
===Music Decoders===&lt;br /&gt;
* [[Foobar2000:Components 0.9/AC3 Decoder (foo_ac3)|AC3 Decoder (foo_ac3)]] Decodes Dolby Digital lossy audio compression technologies format ([[AC3]]).&lt;br /&gt;
* [[Foobar2000:Components 0.9/DTS Decoder (foo_dts)|DTS Decoder (foo_dts)]] Decodes Digital Theater Systems ([[DTS]]) audio format.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MIDI Synthesizer Host (foo_midi)|MIDI Synthesizer Host (foo_midi)]] Adds decoding support for General MIDI files (.MID) and RIFF MIDI files (.RMI) as well as several proprietary MIDI formats (.MIDS, .GMF, .HMI, .HMP, .MUS, .XMI).&lt;br /&gt;
* [[Foobar2000:Components 0.9/OptimFROG Lossless Audio Decoder (foo_input_ofr)|OptimFROG Lossless Audio Decoder (foo_input_ofr)]] Decodes both the Lossless ([[OptimFROG|OFR]]) and DualStream (OFS) audio format.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Shorten Decoder (foo_input_shorten)|Shorten Decoder (foo_input_shorten)]] Decodes Shorten ([[SHN]]) audio format.&lt;br /&gt;
* [[Foobar2000:Components 0.9/SPDIF Passthrough (foo_spdif)|SPDIF Passthrough (foo_spdif)]] SPDIF passthrough for [[AC3]] and [[DTS]] files.&lt;br /&gt;
* [[Foobar2000:Components 0.9/TAK Decoder (foo_input_tak)|TAK Decoder (foo_input_tak)]] Adds support for decoding and tagging [[TAK]] files as well as reading embedded album art.&lt;br /&gt;
* [[Foobar2000:Components/TTA Audio Decoder (foo_input_tta)|TTA Audio Decoder (foo_input_tta)]] Decodes True Audio ([[TTA]]) audio format.&lt;br /&gt;
&lt;br /&gt;
===Other Decoders===&lt;br /&gt;
* [[Foobar2000:Components 0.9/ADPCM Decoder (foo_adpcm)|ADPCM Decoder (foo_adpcm)]] Plays GameCube ADPCM audio data and some. (DSP, ADP, GCM, HPS, STM, AST, etc.)&lt;br /&gt;
* [[Foobar2000:Components 0.9/AdPlug decoder (foo_input_adplug)|AdPlug decoder (foo_input_adplug)]] Adds decoding support for all Adlib FM chip formats supported by the AdPlug library.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Another Slight Atari Player (foo_asap)|Another Slight Atari Player (foo_asap)]] [http://asap.sourceforge.net/ ASAP] is a player/converter of Atari 8-bit music for modern computers. It provides high-quality, identical to the popular Atari800 emulator, emulation of the POKEY sound chip and the 6502 processor.&lt;br /&gt;
* [[Foobar2000:Components 0.9/AviSynth decoder (foo_input_avs)|AviSynth decoder (foo_input_avs)]] Adds decoding support for AviSynth scripts (.AVS), audio only.&lt;br /&gt;
* [[Foobar2000:Components/DSDIFF Decoder (foo_input_dsdiff)|DSDIFF Decoder (foo_input_dsdiff)]] Adds decoding support for DSDIFF files (.DFF).&lt;br /&gt;
* [[Foobar2000:Components 0.9/DUMB Module Decoder (foo_dumb)|DUMB Module Decoder (foo_dumb)]] Plays your favorite module files, and then some. (MOD, S3M, XM, IT, 669, PTM, PSM, MTM, UMX)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Game Emu Player (foo_gep)|Game Emu Player (foo_gep)]] Plays several emulation formats. (GBS, NSF, SPC, GYM, HES, VGM)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Ganbatte! (foo_ganbatte)|Ganbatte! (foo_ganbatte)]] Plays compressed Edlib (.d00, .d01) files.&lt;br /&gt;
* [[Foobar2000:Components/Hively Tracker Decoder (foo_input_hvl)|Hively Tracker Decoder (foo_input_hvl)]] Adds decoding support for Hively Tracker files (.HVL) as well as Abyss&#039; Highest eXperience files (.AHX).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Lunar 2 PCM Decoder (foo_lunar2)|Lunar 2 PCM Decoder (foo_lunar2)]] Plays audio files found on the original Lunar: Eternal Blue CD (RP*.PCM).&lt;br /&gt;
* [[Foobar2000:Components 0.9/M1 Decoder (foo_m1)|M1 Decoder (foo_m1)]] Plays arcade/pinball game sound.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MDX Decoder (foo_input_mdx)|MDX Decoder (foo_input_mdx)]] MDX is a MIDI-like format that is designed to be played using the X68000&#039;s FM synthesizer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/NSF Decoder (foo_input_nsf)|NSF Decoder (foo_input_nsf)]] NSF file is a sound data file containing instructions for the Nintendo Entertainment System (NES) sound hardware.&lt;br /&gt;
* [[Foobar2000:Components 0.9/PSF Decoder (foo_psf)|PSF Decoder (foo_psf)]] Plays PlayStation Sound Format (PSF) files.&lt;br /&gt;
* [[Foobar2000:Components/QSF decoder (foo_input_qsf)|QSF decoder (foo_input_qsf)]] Adds decoding support for Capcom QSound Sound Format files (.QSF/.MINIQSF).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Reverse (foo_input_reverse)|Reverse (foo_input_reverse)]] Play music in reverse.&lt;br /&gt;
* [[Foobar2000:Components 0.9/SID Player 2 (foo_sid)|SID Player 2 (foo_sid)]] Sound chip of Commodore&#039;s CBM-II, Commodore 64 and Commodore 128 home computers.&lt;br /&gt;
* [[Foobar2000:Components 0.9/S98 Decoder (foo_input_s98)|S98 Decoder (foo_input_s98)]] Sound format for the NEC PC-98 microcomputer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/USF Decoder (foo_input_usf)|USF Decoder (foo_input_usf)]] Decodes sound data ripped directly from a Nintendo 64 video game.&lt;br /&gt;
&lt;br /&gt;
==Visualisation==&lt;br /&gt;
* [[Foobar2000:Components 0.9/Peakmeter (foo uie peakmeter)|Peakmeter for Columns UI (foo_uie_peakmeter)]] Displays the level for each channel in dB.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Peakmeter Spectrum (foo uie vis peakmeter spectrum)|Peakmeter and spectrum analyzer (foo_uie_vis_peakmeter_spectrum)]] Plugin that combines a peakmeter with a spectrum analyzer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/ProjectM Visualisation (foo_vis_projectM)|ProjectM Visualisation (foo_vis_projectM)]] Based on the ProjectM project, which is a reimplementation of Milkdrop under OpenGL.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Shpeck (foo_vis_shpeck)|Shpeck (foo_vis_shpeck)]] Winamp visualisation plugins wrapper.&lt;br /&gt;
* [[#wmpvis|WmpVis (foo_uie_wmpvis)]] Uses the visualizations from WMP. &#039;&#039;Panel version only&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Other==&lt;br /&gt;
===General===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Alarm (foo_alarm)|Alarm (foo_alarm)]] Starts playback at the specified period of time.&lt;br /&gt;
* [[Foobar2000:Components/Automatic BPM Analyser (foo_bpm)|Automatic BPM Analyser (foo_bpm)]] Automatically calculate the BPM of songs. Manual BPM calculation also available.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Autosave &amp;amp; Autobackup (foo_jesus)|Autosave &amp;amp; Autobackup (foo_jesus)]] Allows periodic automatic saving of configuration and other data in foobar2000 and keeping backup copies of such data.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Channel Usage Visualisation (foo_vis_channelusage)|Channel Usage Visualisation (foo_vis_channelusage)]] Channel Usage Visualisation.&lt;br /&gt;
* [[Foobar2000:Components 0.9/EXTM3U Playlist Creator (foo_extm3u)|EXTM3U Playlist Creator (foo_extm3u)]] Allow to save current playlist in the EXTM3U format.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Feature Watcher (foo_whatsnew)|Feature Watcher (foo_whatsnew)]] Watches for added or removed features.&lt;br /&gt;
* [[Foobar2000:Components 0.9/File Date (foo_filedate)|File Date (foo_filedate)]] Add to file tag date added, accessed, created or modified from context menu entries.&lt;br /&gt;
* [[Foobar2000:Components 0.9/HyperIM (foo_2hyperim)|HyperIM (foo_2hyperim)]] Provides 19 media macros.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Infospect (foo_infospect)|Infospect (foo_infospect)]] Displays low level playback information.&lt;br /&gt;
* [[Foobar2000:Components 0.9/iPod Manager (foo_dop)|iPod Manager (foo_dop)]] Experimental iPod plugin for foobar2000 0.9.2+, currently in alpha version.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Logitech G15 LCD Display (foo_g15lcd)|Logitech G15 LCD Display (foo_g15lcd)]] Control the LCD panel on a Logitech G15 keyboard.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Logitech LCD Display &amp;amp; Visualization (foo_logitech_lcd)|Logitech LCD Display &amp;amp; Visualization (foo_logitech_lcd)]] Customizable visualizations and track info on the LCD panel on a Logitech G15/G19/Z-10.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Menu Addons (foo_menu_addons)|Menu Addons (foo_menu_addons)]] Adds a few shortcuts in menu.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Open URL (foo_openurl)|Open URL (foo_openurl)]] Adds a context menu item to open URLs from metadata fields in a web browser.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Pause On Lock (foo_lock)|Pause On Lock (foo_lock)]] Pauses/unpauses foobar2000 on workstation lock/unlock.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Pause on Lock (extended) (foo_lock_ex)|Pause on Lock (extended) (foo_lock_ex)]] Pause playing on workstation lock. Optimized for use with Windows XP/2003.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Preview (foo_preview)|Preview (foo_preview)]] Play only part of each track in the playlist.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Replaygain Override (foo_rg_trn)|Replaygain Override (foo_rg_trn)]] Allows you to automatically switch between replaygain modes based on specified criteria (e.g. use track based RG for shuffle mode, etc.)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Run (foo_run)|Run (foo_run)]] Able you to run a external program with the foobar syntax.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Run Commands (foo_runcmd)|Run Commands (foo_runcmd)]] Search and execute menu commands.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Scheduler (foo_scheduler)|Scheduler (foo_scheduler)]] Plugin for scheduling actions like play, stop, system shutdown/wake up and many more.&lt;br /&gt;
* [[Foobar2000:Components/Seekbox (foo_seek_box)|Seekbox (foo_seek_box)]] Main menu item that pops up a box for seeking to a particular hh:mm:ss time in the current track. &lt;br /&gt;
* [[Foobar2000:Components 0.9/Send To Device (foo_sendtodevice)|Send To Device (foo_sendtodevice)]] Add &amp;quot;Send to Device&amp;quot; feature.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Shell Link Resolver (foo_lnk)|Shell Link Resolver (foo_lnk)]] Shell link resolver.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Timebomb (foo_timebomb)|Timebomb (foo_timebomb)]] Stop playback / exit program after a specified time.&lt;br /&gt;
* [[Foobar2000:Components/Unix archive support (foo_unpack_unix)|Unix archive support (foo_unpack_unix)]] Adds support for reading from Unix Tape Archives (.TAR), gzip files (.GZ), and bzip2 files (.BZ2).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Unpacker for 7-Zip archive (foo_unpack_7z) |Unpacker for 7-Zip archive (foo_unpack_7z)]]&lt;br /&gt;
* [[Foobar2000:Components 0.9/Unpacker for JMA archive (foo_unpack_jma)|Unpacker for JMA archive (foo_unpack_jma)]]&lt;br /&gt;
* [[Foobar2000:Components 0.9/Unpacker for LHA archive (foo_unpack_lha)|Unpacker for LHA archive (foo_unpack_lha)]]&lt;br /&gt;
* [[Foobar2000:Components/UPnP/DLNA Renderer, Server, Control Point (foo_upnp)|UPnP/DLNA Renderer, Server, Control Point (foo_upnp)]]&lt;br /&gt;
* [[Foobar2000:Components 0.9/Winamp API Emulator (foo_winamp_spam)|Winamp API Emulator (foo_winamp_spam)]] Designed to create a fake Winamp 1.x window which will act as a wrapper between applications written to use the Winamp API and foobar2000.&lt;br /&gt;
&lt;br /&gt;
===Lyrics===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Gasazip Lyrics (foo_gasazip)|Gasazip Lyrics (foo_gasazip)]] Search for lyrics and displays it in external window.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Lyrics Show 2(foo_uie_lyrics2)|Lyrics Show 2(foo_uie_lyrics2)]] Downloads and displays lyrics, with LRC/timestamp support.&lt;br /&gt;
* [[Foobar2000:Components 0.9/LyricsDB (foo_lyricsdb)|LyricsDB (foo_lyricsdb)]] Search lyrics basing on song&#039;s artist title and sometimes album.&lt;br /&gt;
* [[Foobar2000:Components 0.9/foo_lyricsgrabber2|Lyrics Grabber 2 (foo_lyricsgrabber2)]] Downloads lyrics and stores them in tags.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Mini Lyrics (foo_ui_minilyrics)|Mini Lyrics (foo_ui_minilyrics)]] Lyrics viewer for synchronizing and displaying lyrics of the currently playing song.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Sakura Script Lyrics (foo_sstp_lyrics)|Sakura Script Lyrics (foo_sstp_lyrics)]] Plays a SAKURA script lyrics to a SSP client.&lt;br /&gt;
&lt;br /&gt;
===Notifier===&lt;br /&gt;
* [[Foobar2000:Components 0.9/AMIP Wrapper (foo_amipwrapper)|AMIP Wrapper (foo_amipwrapper)]] Complete now-playing plug-in for mIRC, PIRCH, Klient, Bersirc, other IRC and Mail clients, supporting full player control from mIRC, playlist search, clipboard integration, HTTP, dynamic image signatures, etc.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Listening To (foo_listeningto)|Listening To (foo_listeningto)]] Sends NowPlaying information to Miranda IM.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Miranda IM Notifier (foo_mim_notify)|Miranda IM Notifier (foo_mim_notify)]] Sends configurable information about the current playing song to Miranda-IM and shows popup windows with this info.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MSN avatar changer (foo_uie_albumart_msn)|MSN avatar changer (foo_uie_albumart_msn)]] Set currently playing song&#039;s album art as avatar.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MSN Now Playing (alt) (foo_msnalt)|MSN Now Playing (alt) (foo_msnalt)]] Show the current song as &amp;quot;Now Playing&amp;quot; in MSN and Windows Live messenger.&lt;br /&gt;
* [[Foobar2000:Components_0.9/WLM_Notifier_(foo_wlm)|Windows Live Notifier (foo_wlm)]] Shows current song as &amp;quot;Now Playing&amp;quot; in in MSN Messenger and Windows Live messenger (WLM). Supports unicode.&lt;br /&gt;
* [[Foobar2000:Components 0.9/On-Screen Display (foo_osd)|On-Screen Display (foo_osd)]] On screen display of track information and volume bar.&lt;br /&gt;
* [[Foobar2000:Components 0.9/On-Screen Display GDI (foo_osd_gdiplus)|On-Screen Display GDI (foo_osd_gdiplus)]] Same as foo_osd but uses GDI+ for osd drawing.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Pretty Popup (foo_prettypop)|Pretty Popup (foo_prettypop)]] Display a moderately sized popup of song information when a new song plays.&lt;br /&gt;
&lt;br /&gt;
===Online database===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Audioscrobbler (foo_audioscrobbler)|Audioscrobbler (foo_audioscrobbler)]] Audioscrobbler will send the name of every song you play on your computer to Last.fm. This effortlessly populates your profile to play radio you like and make personalized recommendations.&lt;br /&gt;
&lt;br /&gt;
===Online radio===&lt;br /&gt;
* [[Foobar2000:Components/Podcatcher (foo_podcatcher)|Podcatcher (foo_podcatcher)]] A podcatcher component for subscribing to, downloading, and playing RSS and Atom podcast feeds in foobar2000.&lt;br /&gt;
* [[Foobar2000:Components/Vorbis Streamer (foo_vorbisstream)|Vorbis Streamer (foo_vorbisstream)]] Streams Vorbis and associated metadata to Icecast2 and Shoutcast servers.&lt;br /&gt;
* [[Foobar2000:Components 0.9/XM Radio Online Player (foo_xm)|XM Radio Online Player (foo_xm)]] Allow you to listen to XM Radio channels over the Internet by using XM Radio Online.&lt;br /&gt;
&lt;br /&gt;
===Playlist tools===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Audioscrobble Charts (foo_scrobblecharts)|Audioscrobble Charts (foo_scrobblecharts)]] Generate a playlist from an artist&#039;s Last.fm chart. It also allows you to sort a selection in the playlist by the artist&#039;s charts.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Bin Pack (foo_binpack)|Bin Pack (foo_binpack)]] Creates playlists from a list with a maximum length.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Command Playlist (foo_cmd_playlist)|Command Playlist (foo_cmd_playlist)]] Add /playlist-activate:&amp;quot;Name&amp;quot; to the foobar command line to activate the named playlist.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Cuesheet Creator (foo_cuesheet_creator)|Cuesheet Creator (foo_cuesheet_creator)]] Cuesheet creator.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Database Search (foo_dbsearch)|Database Search (foo_dbsearch)]] Database search.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Default Video Player (foo_default_videoplayer)|Default Video Player (foo_default_videoplayer)]] Allows you to play your video clips from foobar playlist with default external player.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Delete Current (foo_deletecurrent)|Delete Current (foo_deletecurrent)]] Adds a menu item giving the possibility to delete from computer the current playing track.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Highlight Playing (foo_highlightplaying)|Highlight Playing (foo_highlightplaying)]] Highlights actual now playing item even when the playlist has been broken.&lt;br /&gt;
* [[Foobar2000:Components 0.9/History (foo_history)|History (foo_history)]] Very basic song history.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Inactive Tracks (foo_skip)|Inactive Tracks (foo_skip)]] Skips tracks that are marked via a tag as inactive.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MeowDB (foo_meowdb)|MeowDB (foo_meowdb)]] Takes the Media Library and outputs the results to a form and uploads it to your server using the cURL library.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Navigator (foo_navigator)|Navigator (foo_navigator)]] Advanced history component.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Now Playing Simple (foo_np_simple)|Now Playing Simple (foo_np_simple)]] Simple now playing plugin to output formatted string to plain text file.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playback Queue Viewer (foo_pqview)|Playback Queue Viewer (foo_pqview)]] Playback queue viewer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Bind (foo_playlist_bind)|Playlist Bind (foo_playlist_bind)]] Synchronize playlist with contents of specific directory.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Clear (foo_playlistclear)|Playlist Clear (foo_playlistclear)]] All playlists are cleared at startup.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Manager (foo_playlist_manager)|Playlist Manager (foo_playlist_manager)]] Playlist manager.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Name Enhenced (foo_playlist_name_enhanced)|Playlist Name Enhenced (foo_playlist_name_enhanced)]] Appends automatically playlist info (&amp;quot;items / length&amp;quot;) to all playlist names.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Tools (foo_utils)|Playlist Tools (foo_utils)]] Provides various general commands.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Tools for Matroska (foo_utils_mka)|Playlist Tools for Matroska (foo_utils_mka)]] Provides various general commands.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Queue Manager (foo_queuemanager)|Queue Manager (foo_queuemanager)]] It provides a window that shows the queue&#039;s contents and allows you to delete parts of them or clear the whole queue. &#039;&#039;Non-ColumnUI obsolete version, try panel version instead.&#039;&#039;&lt;br /&gt;
* [[Foobar2000:Components 0.9/Randomized Playlist Entry (foo_random)|Randomized Playlist Entry (foo_random)]] Randomized playlist entry.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Rating (foo_rating)|Rating (foo_rating)]] Display an icon in the systray with a tooltip popup from which you can choose a rating between 1 and 5 for the currently playing file.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Remove Played (foo_removeplayed)|Remove Played (foo_removeplayed)]] It removes tracks from the playlist once they&#039;ve been played.&lt;br /&gt;
* [[Foobar2000:Components/Soft Playlists (foo_softplaylists)|Soft Playlists (foo_softplaylists)]] Can create different Last.fm related playlists, love tracks on Last.fm and save and load XSPF playlists (make playlists without hard paths).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Track Finder (foo_trackfinder)|Track Finder (foo_trackfinder)]] Displays a context menu that lets you quickly find songs based on their album title or artists name.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Track Position (foo_trackpos)|Track Position (foo_trackpos)]] Provides a new context menu item &amp;quot;place after current playing&amp;quot;, that allows you to place any tracks after the current playing one in the playing playlist.&lt;br /&gt;
* [[Foobar2000:Components 0.9/XSPF (foo_xspf)|XSPF (foo_xspf)]] Adds XSPF support. XSPF is an open, XML based playlist format.&lt;br /&gt;
&lt;br /&gt;
===Playback Statistics===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playback Statistics Custom (foo_playback_custom)|Playback Statistics Custom (foo_playback_custom)]] Stores playback statistics in tags like foo_playcount_mod, with claimed faster response, and uses foo_custominfo db if file is unavailable for writing.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Play Count Mod (foo_playcount_mod)|Play Count Mod (foo_playcount_mod)]] Unofficial playcount modded to supress the update tag popups.&lt;br /&gt;
&lt;br /&gt;
===Remote control===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Advanced Controls (foo_advancedcontrols)|Advanced Controls (foo_advancedcontrols)]]  Control all the playback functions from icons in the Taskbar Notification Area (play, pause, next, previous, open)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Bluetooth Control (foo_bluetooth_ctrl)|Bluetooth Control (foo_bluetooth_ctrl)]] Control your favourite music player using your favourite Symbian-based bluetooth enabled phone.&lt;br /&gt;
* [[Foobar2000:Components 0.9/COM Automation Server (foo_comserver2)|COM Automation Server (foo_comserver2)]] Allows controlling foobar2000 through COM Automation&lt;br /&gt;
* [[Foobar2000:Components 0.9/Control Server (foo_controlserver)|Control Server (foo_controlserver)]] Acts as a server to control Foobar2000. Connect with a telnet client and control it using ASCII commands.&lt;br /&gt;
* [[Foobar2000:Components 0.9/DDE Control (foo_ddecontrol)|DDE Control (foo_ddecontrol)]] Control foobar remotelly with DDE interprocess communication (interface in japanese only).&lt;br /&gt;
* [[Foobar2000:Components 0.9/HTTP Writer (foo_write_http)|HTTP Writer (foo_write_http)]] It&#039;s TCP/IP server that listens on a specified port for incoming requests such as play, stop, etc.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Joystick Control (foo_joystick_control)|Joystick Control (foo_joystick_control)]] Control foobar2000 from a joystick/gamepad.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Minibar2k (foo_Minibar2k)|Minibar2k (foo_Minibar2k)]] Control Foobar2k from your PDA (PocketPC based).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Remote Control (foo_remotecontrol)|Remote Control (foo_remotecontrol)]] Adds support to Melloware Intelliremote software which claims to work with Creative remote control (Soundblaster Live!, Audigy, Extigy, Audigy ZS and Soundblaster X-Fi.)&lt;br /&gt;
* [[Foobar2000:Components 0.9/RM-1800 (foo_mr1800)|RM-1800 (foo_mr1800)]] Adds support of Creative X-Fi&#039;s remote (RM-1800).&lt;br /&gt;
* [[Foobar2000:Components 0.9/RM-X Media Edition (foo_rmx)|RM-X Media Edition (foo_rmx)]] Yet another plugin for remote control. SHAREWARE.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Titlebar (foo_managedWrapper)|Titlebar (foo_managedWrapper)]] Create a personal title bar that shows the currently playing song on the top of the screen all the time. It supports custom-made skins.&lt;br /&gt;
* [[Foobar2000:Components 0.9/WinLIRC Client (foo_lirc)|WinLIRC Client (foo_lirc)]] Control Foobar from a remote control.&lt;br /&gt;
&lt;br /&gt;
===Tagging===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Chacon (foo_chacon)|Chacon (foo_chacon)]] Chacon is a simple tool for fixing tags by converting them between different character sets.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Custom Info (foo_custominfo)|Custom Info (foo_custominfo)]] Allows you to set info fields for files without modifying them. &lt;br /&gt;
* [[Foobar2000:Components 0.9/Discogs (foo_discogs)|Discogs (foo_discogs)]] Retrieve info and album art from Discogs.com database.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Freedb Tagger (foo_freedb2)|Freedb Tagger (foo_freedb2)]] Freedb.org tagger. Now included with official foobar2000 installers.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Live Show Tagger (foo_tradersfriend)|Live Show Tagger (foo_tradersfriend)]] Live show tagger.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
* [http://www.foobar2000.org/components Official third-party components site]&lt;br /&gt;
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=42730&amp;amp;st=0 List of components] from earlier versions not yet ported to 0.9.x.&lt;br /&gt;
&lt;br /&gt;
* [[foobar2000:foobar2000|Go back to Main Page]]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components&amp;diff=22237</id>
		<title>Foobar2000:Components</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components&amp;diff=22237"/>
		<updated>2010-12-12T17:23:12Z</updated>

		<summary type="html">&lt;p&gt;Yegor: Sliced DSP section into categories, added new VST adapter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{title|foobar2000 Components}}&lt;br /&gt;
&lt;br /&gt;
{{fb2k}}&lt;br /&gt;
This page contains most foobar2000 components available at time of history last update.&lt;br /&gt;
=Offical Components= &lt;br /&gt;
The following components are created and maintained by the foobar2000 development team. Support for them should be asked for in the [http://www.hydrogenaudio.org/forums/index.php?showforum=29 Support forum]&lt;br /&gt;
===Included in Installer===&lt;br /&gt;
[[Image:Optional_features.png|thumb|The Optional Features screen of the fb2k Installer]]&lt;br /&gt;
In addition to foobar2000&#039;s core functionality, the following components can be installed as needed, in the Optional Features section of the installer.&lt;br /&gt;
*Audio CD Support (foo_cdda) Adds Support for [[CD|Audio CD]] Playback&lt;br /&gt;
*Album List (foo_albumlist) Gives quick access to Media Library Content with customizable tree view&lt;br /&gt;
*Archive Reader (foo_unpack) Adds support for playing files directly from ZIP RAR and GZIP archives&lt;br /&gt;
*[[Foobar2000:Converter|Converter (foo_converter)]] Converts files to WAV or any other formats using command line encoders&lt;br /&gt;
*[[Foobar2000:File_operations|File Operations (foo_fileops)]] Renames, moves, or copies files according to specified patterns&lt;br /&gt;
*[[Foobar2000:Components_0.9/Freedb_Tagger_(foo_freedb2)|freedb Tagger (foo_freedb2)]] Tag retrieving support from freedb service for any set of files (mp3,mpc,flac,...-not only CDDA tracks)&lt;br /&gt;
*ReplayGain Scanner (foo_rgscan) advanced solution for volume matching&lt;br /&gt;
*Standard DSPs (foo_dsp_std) Equalizer, resampler, advanced limiter, hard limiter, stereo to 4 channel upmixer and a couple other effects&lt;br /&gt;
&lt;br /&gt;
===Additional Components===&lt;br /&gt;
These components are provided as separate downloads, found on the [http://www.foobar2000.org/components/author/Peter Additional Components page]. &lt;br /&gt;
*[[Foobar2000:Components_0.9/ABX_Comparator(foo_abx)|ABX comparator (foo_abx)]] component for double blind listening tests&lt;br /&gt;
*[[Foobar2000:Components 0.9/ALAC Decoder (foo_input_alac)|ALAC Decoder (foo_input_alac)]] Apple Lossless ([[ALAC]]) decoder&lt;br /&gt;
* [[Foobar2000:Components 0.9/ASIO Output (foo_out_asio)|ASIO output support (foo_out_asio)]] Adds ASIO output support.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Audio CD Writer (foo_burninate)|Audio CD Writer (foo_burninate)]] CD burning support&lt;br /&gt;
*[[Foobar2000:Components 0.9/Binary Comparator (foo_bitcompare)|Binary Comparator (foo_bitcompare)]] Performs binary comparison between two or more tracks and reports differences.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Decoding Speed Test (foo_benchmark)|Decoding Speed Test (foo_benchmark)]] Measures decoding speed of audio files.&lt;br /&gt;
* [[Foobar2000:Components 0.9/File Integrity Verifier (foo_verifier)|File Integrity Verifier (foo_verifier)]] Checks specified media files for decoding errors.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Convolve (foo_convolve)|Impulse response convolver (foo_convolve)]] Allows arbitrary effects to be captured and used inside foobar2000. ([http://www.hydrogenaudio.org/forums/index.php?showtopic=10611 More Info])&lt;br /&gt;
* [[Foobar2000:Components 0.9/Kernel Streaming Output (foo_out_ks)|Kernel Streaming support (foo_out_ks)]] Allows bit-exact playback bypassing Windows kernel mixer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Masstagger (foo_masstag)|Masstagger (foo_masstag)]] Automates various tag editing operations.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Monkey&#039;s Audio Decoder (foo_input_monkey)|Monkey&#039;s Audio Decoder (foo_input_monkey)]] Adds decoding support for Monkey&#039;s Audio files (.[[APE]]) as well as APE Link files (.[[APL]]).&lt;br /&gt;
*[[Foobar2000:Components/Playback Statistics v3.x (foo playcount)|Playback Statistics (foo playcount)]] Collects playback statistics for your Media Library content.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Quick Tagger (foo_quicktag)| Quick Tagger (foo_quicktag)]] Adds customizable context menu commands for quickly setting tag fields to preconfigured values&lt;br /&gt;
* [[Foobar2000:Components 0.9/Text Tools (foo texttools)|Text Tools (foo_texttools)]] Adds customizable context menu commands for copying information about the selected tracks to Windows Clipboard. &lt;br /&gt;
* [[Foobar2000:Components 0.9/WASAPI output support (foo_out_wasapi)|WASAPI output support (foo_out_wasapi)]] Adds Windows Audio Session API exclusive mode output support, allowing bit-exact output and muting all other sounds on Windows Vista and Windows 7 systems.&lt;br /&gt;
&lt;br /&gt;
=3rd Party Components=&lt;br /&gt;
The following components are created and maintained by 3rd-party authors, using foobar2000&#039;s [http://www.foobar2000.org/SDK.html SDK]. Support for these components should be asked for in the [http://www.hydrogenaudio.org/forums/index.php?showforum=33 3rd Party Plugins forum] Asking for help directly in the component&#039;s thread is usually preferred.&lt;br /&gt;
== User Interfaces ==&lt;br /&gt;
&lt;br /&gt;
=== Columns UI ===&lt;br /&gt;
[[Foobar2000:Components 0.9/Columns UI (foo_ui_columns)|Columns UI (foo_ui_columns)]] Very popular alternate interface for foobar2000 based on a columns and panel layout.&lt;br /&gt;
&lt;br /&gt;
Columns UI introduced components with [[#Panels|panel]] capability which extend the user interface.&lt;br /&gt;
&lt;br /&gt;
== User Interface Addons ==&lt;br /&gt;
=== UI Elements ===&lt;br /&gt;
The [[Foobar2000:Components 0.9/Default user interface (foo_ui_std)|default user interface (foo_ui_std)]], included in the standard installation package, can be extended with the following component(s):&lt;br /&gt;
* [[Foobar2000:Components 0.9/Facets (foo_facets)|Facets (foo_facets)]] Flexible media library viewer based on linked lists.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Text Display (foo_textdisplay)|Text Display (foo_textdisplay)]] Displays information about the playing or selected track.&lt;br /&gt;
* [[Foobar2000:Components/Waveform Seekbar (foo_wave_seekbar)|Waveform Seekbar (foo_wave_seekbar)]] Element for DUI with seekbar functionality on top of the waveform of the playing song.&lt;br /&gt;
* [[Foobar2000:Components/Quicksearch UI Element (foo quicksearch)|Quicksearch UI Element (foo_quicksearch)]] Search toolbar that sends results to a playlist.&lt;br /&gt;
* [[Foobar2000:Components/Playlist_Organizer_(foo_plorg)|Playlist Organizer (foo_plorg)]] Advanced playlist manager to organize playlists in a treeview.&lt;br /&gt;
&lt;br /&gt;
=== Panels ===&lt;br /&gt;
Panels extend the functionality of Columns UI components.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Album Art Panel (foo_uie_albumart)|Album Art Panel (foo_uie_albumart)]] Panel to display album art.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Album List Panel (foo_uie_albumlist)|Album List Panel (foo_uie_albumlist)]] Displays the database in a treeview using customizable sorting methods (by genre, artist, directory, etc.)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Bookmarks (foo_uie_bookmarks)|Bookmarks (foo_uie_bookmarks)]] Help you remember positions in songs.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Console (foo_uie_console)|Console (foo_uie_console)]] Panel version of console. Displays diagnostic messages. Requires Columns UI 0.1.3 beta 1 or newer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Cover Flow (foo_bubble_coverflow)|Cover Flow (foo_bubble_coverflow)]] The plugin can work either as a UI panel or a standalone window (found in the view menu), and a fullscreen mode for both.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Dockable Panels (foo_dockable_panels)|Dockable Panels (foo_dockable_panels)]] It allows you to create windows that host columns ui panels as floating windows that can be attached to the side of the main foobar2000 window or each other.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Egoh Spectrum Analyser (foo_uie_vis_egoh)|Egoh Spectrum Analyser (foo_uie_vis_egoh)]] Similar to the default spectrum analyser.&lt;br /&gt;
* [[Foobar2000:Components 0.9/ELplaylist panel (foo uie elplaylist)|ELplaylist panel (foo uie elplaylist)]] Playlist panel replacement with extensive customization options.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Explorer Panel (foo_uie_explorer)|Explorer Panel (foo_uie_explorer)]] Displays a treeview of selected disks/folders.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Graphical Browser (foo uie graphical browser) |Graphical Browser (foo uie graphical browser)]] A panel that allows to browse media library by graphical or text tiles &lt;br /&gt;
* [[Foobar2000:Components 0.9/Lyrics Panel (foo_uie_lyrics_panel)|Lyrics Panel (foo_uie_lyrics_panel)]] Display lyrics stored in file tags. &lt;br /&gt;
* [[Foobar2000:Components 0.9/Music Browser (foo_browser)|Music Browser (foo_browser)]] Panels for Browsing Library, Similar to iTunes. No longer updated. Most have better success CUI&#039;s in-built [[Foobar2000:Components_0.9/Columns_UI_%28foo_ui_columns%29#Playlist_filters|filters]].&lt;br /&gt;
* [[Foobar2000:Components 0.9/Panel Stack Splitter (foo uie panel splitter) | Panel Stack Splitter (foo_uie_panel_splitter)]] Allows you to place objects freely within the foobar2000 window, including panels, text, and images&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Dropdown (foo_uie_playlists_dropdown)|Playlist Dropdown (foo_uie_playlists_dropdown)]] Displays the playlist in a dropdown menu.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Tree (foo_playlist_tree)|Playlist Tree (foo_playlist_tree)]] Tree based media library with many available customizations.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Power Panels (foo_uie_powerpanels)|Power Panels (foo_uie_powerpanels)]] Seekbar and volume transparent version panels. Useful for theming.&lt;br /&gt;
* [[Foobar2000:Components 0.9/ProjectM Visualisation Panel (foo_uie_vis_projectM)|ProjectM Visualisation Panel (foo_uie_vis_projectM)]] Based on the ProjectM project, which is a reimplementation of Milkdrop under OpenGL.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Queue Manager (foo_uie_queuemanager)|Queue Manager (foo_uie_queuemanager)]] It provides a window that shows the queue&#039;s contents and allows you to delete parts of them or clear the whole queue.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Shpeck (foo_vis_shpeck)|Shpeck (foo_vis_shpeck)]] Winamp visualisation plugins wrapper.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Tabs (foo_uie_tabs)|Tabs (foo_uie_tabs)]] Tabs allows you to break Pauli&#039;s Exclusion principle by placing multiple panels in the same position at the same time.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Typefind (foo_typefind)|Typefind (foo_typefind)]] Provides some in-line search facilities.&lt;br /&gt;
* [[Foobar2000:Components/Waveform Seekbar (foo_wave_seekbar)|Waveform Seekbar (foo_wave_seekbar)]] Panel for CUI with seekbar functionality on top of the waveform of the playing song.&lt;br /&gt;
* [[Foobar2000:Components 0.9/WmpVis (foo_uie_wmpvis)|&amp;lt;span id=&amp;quot;wmpvis&amp;quot;&amp;gt;WmpVis (foo_uie_wmpvis)&amp;lt;/span&amp;gt;]] Uses the visualizations from WMP.&lt;br /&gt;
* [[Foobar2000:Components 0.9/WSH panel (foo_uie_wsh_panel)|WSH panel (foo_uie_wsh_panel)]] Windows script host panel.&lt;br /&gt;
&lt;br /&gt;
==DSP==&lt;br /&gt;
===Multichannel audio===&lt;br /&gt;
* [[Foobar2000:Components 0.9/ATSurround Processor (foo_dsp_atsurround)|ATSurround Processor (foo_dsp_atsurround)]] Reproduces surround sound information present in many stereo audio material and more.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Channel Mixer (foo_channel_mixer)|Channel Mixer (foo_channel_mixer)]] Up/down mix to/from 1-6 channels.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Dolby Pro Logic II wrapper (foo_dsp_pl2)|Dolby Pro Logic II wrapper (foo_dsp_pl2)]] Dolby Pro Logic II engine DLL (dll not included).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Downmix (foo_dsp_downmix)|Downmix (foo_dsp_downmix)]] Downmix [[AC3]], [[DTS]], etc. to stereo.&lt;br /&gt;
* [[Foobar2000:Components 0.9/FreeSurround (foo_dsp_fsurround)|FreeSurround (foo_dsp_fsurround)]] It takes Dolby Surround / Pro Logic I/II encoded stereo music and decodes it into 5.1 sound. &lt;br /&gt;
* [[Foobar2000:Components 0.9/Surround Pan (foo_dsp_span)|Surround Pan (foo_dsp_span)]] WYSIWYG Surround panning.&lt;br /&gt;
===Headphones===&lt;br /&gt;
* [[Foobar2000:Components 0.9/4Front Headphones (foo_dsp_headphones9)|4Front Headphones (foo_dsp_headphones9)]] Effects for headphone users.&lt;br /&gt;
* [[Foobar2000:Components 0.9/BS2D (foo_dsp_bs2p)|BS2D (foo_dsp_bs2p)]] Improves headphone listening of regular hi-fi stereo records.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Crossfeed (foo_dsp_crossfeed)|Crossfeed (foo_dsp_crossfeed)]] Filters the music to help reduce fatigue caused by listening to music with headphones.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Dolby Headphone Wrapper (foo_dsp_dolbyhp)|Dolby Headphone Wrapper (foo_dsp_dolbyhp)]] Dolby Headphone engine DLL.&lt;br /&gt;
===Utilities===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Post-track Silence (foo_dsp_silence)|Post-track Silence (foo_dsp_silence)]] Inserts a configurable amount of silence after each track to help external devices like MiniDisc players to sync track changes.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Voice Cut Filter (foo_dsp_centercut)|Voice Cut Filter (foo_dsp_centercut)]] Voice cut filter.&lt;br /&gt;
* [[Foobar2000:Components/Equalizer split (foo_dsp_eqsplit)|Equalizer split (foo_dsp_eqsplit)]] A meta-DSP that feeds each channel into a separate equalizer instance.&lt;br /&gt;
* [[Foobar2000:Components 0.9/XOver (foo_dsp_xover)|XOver (foo_dsp_xover)]] Implements this digital crossover to achieve active multi-amplification.&lt;br /&gt;
===Effects===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Soundtouch (foo_dsp_soundtouch)|Soundtouch (foo_dsp_soundtouch)]] Ajust pitch, tempo and rate.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Tube Sound (foo_dsp_tube)|Tube Sound (foo_dsp_tube)]] Emulate tube sound.&lt;br /&gt;
* [[Foobar2000:Components 0.9/VLevel (foo_dsp_vlevel)|VLevel (foo_dsp_vlevel)]] Dynamic compressor which amplifies the quiet parts of music.&lt;br /&gt;
===Format converters===&lt;br /&gt;
* [[Foobar2000:Components/HDCD Decoder (foo_dsp_hdcd)|HDCD Decoder (foo_dsp_hdcd)]] This DSP component will decode HDCD data in any 16-bit PCM stream passed through it, resulting in 20-bit PCM.&lt;br /&gt;
* [[Foobar2000:Components 0.9/LPCM - Delta-PCM Converter (foo_dsp_delta)|LPCM - Delta-PCM Converter (foo_dsp_delta)]] Noise sharpening filter.&lt;br /&gt;
* [[Foobar2000:Components 0.9/SSRC (foo_dsp_ssrc)|SSRC (foo_dsp_ssrc)]] Sample rate converter.&lt;br /&gt;
===Multi-purpose===&lt;br /&gt;
* [[Foobar2000:Components 0.9/OSS/3D (foo_dsp_oss3ddsp)|OSS/3D (foo_dsp_oss3ddsp)]] Audio enhancement. SHAREWARE.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Stereo Convolver (foo_dsp_stereoconv)|Stereo Convolver (foo_dsp_stereoconv)]] Take stereo audio and convolve each channel with two impulse responses.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Winamp DSP Bridge (foo_dsp_winamp)|Winamp DSP Bridge (foo_dsp_winamp)]] Allows the use of Winamp DSPs.&lt;br /&gt;
* [[Foobar2000:Components/VST adapter|VST 2.4 adapter]] Allows Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
* [[Foobar2000:Components 0.9/George Yohng&#039;s VST Wrapper (foo_dsp_vstwrap)|George Yohng&#039;s VST Wrapper (foo_dsp_vstwrapper)]] Enables VST plug-ins.&lt;br /&gt;
* [[Foobar2000:Components 0.9/VST Host (foo_dsp_vst)|VST Host (foo_dsp_vst)]] Adds support to Virtual Studio Technology audio interface.&lt;br /&gt;
&lt;br /&gt;
==Input==&lt;br /&gt;
===Music Decoders===&lt;br /&gt;
* [[Foobar2000:Components 0.9/AC3 Decoder (foo_ac3)|AC3 Decoder (foo_ac3)]] Decodes Dolby Digital lossy audio compression technologies format ([[AC3]]).&lt;br /&gt;
* [[Foobar2000:Components 0.9/DTS Decoder (foo_dts)|DTS Decoder (foo_dts)]] Decodes Digital Theater Systems ([[DTS]]) audio format.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MIDI Synthesizer Host (foo_midi)|MIDI Synthesizer Host (foo_midi)]] Adds decoding support for General MIDI files (.MID) and RIFF MIDI files (.RMI) as well as several proprietary MIDI formats (.MIDS, .GMF, .HMI, .HMP, .MUS, .XMI).&lt;br /&gt;
* [[Foobar2000:Components 0.9/OptimFROG Lossless Audio Decoder (foo_input_ofr)|OptimFROG Lossless Audio Decoder (foo_input_ofr)]] Decodes both the Lossless ([[OptimFROG|OFR]]) and DualStream (OFS) audio format.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Shorten Decoder (foo_input_shorten)|Shorten Decoder (foo_input_shorten)]] Decodes Shorten ([[SHN]]) audio format.&lt;br /&gt;
* [[Foobar2000:Components 0.9/SPDIF Passthrough (foo_spdif)|SPDIF Passthrough (foo_spdif)]] SPDIF passthrough for [[AC3]] and [[DTS]] files.&lt;br /&gt;
* [[Foobar2000:Components 0.9/TAK Decoder (foo_input_tak)|TAK Decoder (foo_input_tak)]] Adds support for decoding and tagging [[TAK]] files as well as reading embedded album art.&lt;br /&gt;
* [[Foobar2000:Components/TTA Audio Decoder (foo_input_tta)|TTA Audio Decoder (foo_input_tta)]] Decodes True Audio ([[TTA]]) audio format.&lt;br /&gt;
&lt;br /&gt;
===Other Decoders===&lt;br /&gt;
* [[Foobar2000:Components 0.9/ADPCM Decoder (foo_adpcm)|ADPCM Decoder (foo_adpcm)]] Plays GameCube ADPCM audio data and some. (DSP, ADP, GCM, HPS, STM, AST, etc.)&lt;br /&gt;
* [[Foobar2000:Components 0.9/AdPlug decoder (foo_input_adplug)|AdPlug decoder (foo_input_adplug)]] Adds decoding support for all Adlib FM chip formats supported by the AdPlug library.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Another Slight Atari Player (foo_asap)|Another Slight Atari Player (foo_asap)]] [http://asap.sourceforge.net/ ASAP] is a player/converter of Atari 8-bit music for modern computers. It provides high-quality, identical to the popular Atari800 emulator, emulation of the POKEY sound chip and the 6502 processor.&lt;br /&gt;
* [[Foobar2000:Components 0.9/AviSynth decoder (foo_input_avs)|AviSynth decoder (foo_input_avs)]] Adds decoding support for AviSynth scripts (.AVS), audio only.&lt;br /&gt;
* [[Foobar2000:Components/DSDIFF Decoder (foo_input_dsdiff)|DSDIFF Decoder (foo_input_dsdiff)]] Adds decoding support for DSDIFF files (.DFF).&lt;br /&gt;
* [[Foobar2000:Components 0.9/DUMB Module Decoder (foo_dumb)|DUMB Module Decoder (foo_dumb)]] Plays your favorite module files, and then some. (MOD, S3M, XM, IT, 669, PTM, PSM, MTM, UMX)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Game Emu Player (foo_gep)|Game Emu Player (foo_gep)]] Plays several emulation formats. (GBS, NSF, SPC, GYM, HES, VGM)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Ganbatte! (foo_ganbatte)|Ganbatte! (foo_ganbatte)]] Plays compressed Edlib (.d00, .d01) files.&lt;br /&gt;
* [[Foobar2000:Components/Hively Tracker Decoder (foo_input_hvl)|Hively Tracker Decoder (foo_input_hvl)]] Adds decoding support for Hively Tracker files (.HVL) as well as Abyss&#039; Highest eXperience files (.AHX).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Lunar 2 PCM Decoder (foo_lunar2)|Lunar 2 PCM Decoder (foo_lunar2)]] Plays audio files found on the original Lunar: Eternal Blue CD (RP*.PCM).&lt;br /&gt;
* [[Foobar2000:Components 0.9/M1 Decoder (foo_m1)|M1 Decoder (foo_m1)]] Plays arcade/pinball game sound.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MDX Decoder (foo_input_mdx)|MDX Decoder (foo_input_mdx)]] MDX is a MIDI-like format that is designed to be played using the X68000&#039;s FM synthesizer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/NSF Decoder (foo_input_nsf)|NSF Decoder (foo_input_nsf)]] NSF file is a sound data file containing instructions for the Nintendo Entertainment System (NES) sound hardware.&lt;br /&gt;
* [[Foobar2000:Components 0.9/PSF Decoder (foo_psf)|PSF Decoder (foo_psf)]] Plays PlayStation Sound Format (PSF) files.&lt;br /&gt;
* [[Foobar2000:Components/QSF decoder (foo_input_qsf)|QSF decoder (foo_input_qsf)]] Adds decoding support for Capcom QSound Sound Format files (.QSF/.MINIQSF).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Reverse (foo_input_reverse)|Reverse (foo_input_reverse)]] Play music in reverse.&lt;br /&gt;
* [[Foobar2000:Components 0.9/SID Player 2 (foo_sid)|SID Player 2 (foo_sid)]] Sound chip of Commodore&#039;s CBM-II, Commodore 64 and Commodore 128 home computers.&lt;br /&gt;
* [[Foobar2000:Components 0.9/S98 Decoder (foo_input_s98)|S98 Decoder (foo_input_s98)]] Sound format for the NEC PC-98 microcomputer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/USF Decoder (foo_input_usf)|USF Decoder (foo_input_usf)]] Decodes sound data ripped directly from a Nintendo 64 video game.&lt;br /&gt;
&lt;br /&gt;
==Visualisation==&lt;br /&gt;
* [[Foobar2000:Components 0.9/Peakmeter (foo uie peakmeter)|Peakmeter for Columns UI (foo_uie_peakmeter)]] Displays the level for each channel in dB.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Peakmeter Spectrum (foo uie vis peakmeter spectrum)|Peakmeter and spectrum analyzer (foo_uie_vis_peakmeter_spectrum)]] Plugin that combines a peakmeter with a spectrum analyzer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/ProjectM Visualisation (foo_vis_projectM)|ProjectM Visualisation (foo_vis_projectM)]] Based on the ProjectM project, which is a reimplementation of Milkdrop under OpenGL.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Shpeck (foo_vis_shpeck)|Shpeck (foo_vis_shpeck)]] Winamp visualisation plugins wrapper.&lt;br /&gt;
* [[#wmpvis|WmpVis (foo_uie_wmpvis)]] Uses the visualizations from WMP. &#039;&#039;Panel version only&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Other==&lt;br /&gt;
===General===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Alarm (foo_alarm)|Alarm (foo_alarm)]] Starts playback at the specified period of time.&lt;br /&gt;
* [[Foobar2000:Components/Automatic BPM Analyser (foo_bpm)|Automatic BPM Analyser (foo_bpm)]] Automatically calculate the BPM of songs. Manual BPM calculation also available.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Autosave &amp;amp; Autobackup (foo_jesus)|Autosave &amp;amp; Autobackup (foo_jesus)]] Allows periodic automatic saving of configuration and other data in foobar2000 and keeping backup copies of such data.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Channel Usage Visualisation (foo_vis_channelusage)|Channel Usage Visualisation (foo_vis_channelusage)]] Channel Usage Visualisation.&lt;br /&gt;
* [[Foobar2000:Components 0.9/EXTM3U Playlist Creator (foo_extm3u)|EXTM3U Playlist Creator (foo_extm3u)]] Allow to save current playlist in the EXTM3U format.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Feature Watcher (foo_whatsnew)|Feature Watcher (foo_whatsnew)]] Watches for added or removed features.&lt;br /&gt;
* [[Foobar2000:Components 0.9/File Date (foo_filedate)|File Date (foo_filedate)]] Add to file tag date added, accessed, created or modified from context menu entries.&lt;br /&gt;
* [[Foobar2000:Components 0.9/HyperIM (foo_2hyperim)|HyperIM (foo_2hyperim)]] Provides 19 media macros.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Infospect (foo_infospect)|Infospect (foo_infospect)]] Displays low level playback information.&lt;br /&gt;
* [[Foobar2000:Components 0.9/iPod Manager (foo_dop)|iPod Manager (foo_dop)]] Experimental iPod plugin for foobar2000 0.9.2+, currently in alpha version.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Logitech G15 LCD Display (foo_g15lcd)|Logitech G15 LCD Display (foo_g15lcd)]] Control the LCD panel on a Logitech G15 keyboard.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Logitech LCD Display &amp;amp; Visualization (foo_logitech_lcd)|Logitech LCD Display &amp;amp; Visualization (foo_logitech_lcd)]] Customizable visualizations and track info on the LCD panel on a Logitech G15/G19/Z-10.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Menu Addons (foo_menu_addons)|Menu Addons (foo_menu_addons)]] Adds a few shortcuts in menu.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Open URL (foo_openurl)|Open URL (foo_openurl)]] Adds a context menu item to open URLs from metadata fields in a web browser.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Pause On Lock (foo_lock)|Pause On Lock (foo_lock)]] Pauses/unpauses foobar2000 on workstation lock/unlock.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Pause on Lock (extended) (foo_lock_ex)|Pause on Lock (extended) (foo_lock_ex)]] Pause playing on workstation lock. Optimized for use with Windows XP/2003.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Preview (foo_preview)|Preview (foo_preview)]] Play only part of each track in the playlist.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Replaygain Override (foo_rg_trn)|Replaygain Override (foo_rg_trn)]] Allows you to automatically switch between replaygain modes based on specified criteria (e.g. use track based RG for shuffle mode, etc.)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Run (foo_run)|Run (foo_run)]] Able you to run a external program with the foobar syntax.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Run Commands (foo_runcmd)|Run Commands (foo_runcmd)]] Search and execute menu commands.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Scheduler (foo_scheduler)|Scheduler (foo_scheduler)]] Plugin for scheduling actions like play, stop, system shutdown/wake up and many more.&lt;br /&gt;
* [[Foobar2000:Components/Seekbox (foo_seek_box)|Seekbox (foo_seek_box)]] Main menu item that pops up a box for seeking to a particular hh:mm:ss time in the current track. &lt;br /&gt;
* [[Foobar2000:Components 0.9/Send To Device (foo_sendtodevice)|Send To Device (foo_sendtodevice)]] Add &amp;quot;Send to Device&amp;quot; feature.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Shell Link Resolver (foo_lnk)|Shell Link Resolver (foo_lnk)]] Shell link resolver.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Timebomb (foo_timebomb)|Timebomb (foo_timebomb)]] Stop playback / exit program after a specified time.&lt;br /&gt;
* [[Foobar2000:Components/Unix archive support (foo_unpack_unix)|Unix archive support (foo_unpack_unix)]] Adds support for reading from Unix Tape Archives (.TAR), gzip files (.GZ), and bzip2 files (.BZ2).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Unpacker for 7-Zip archive (foo_unpack_7z) |Unpacker for 7-Zip archive (foo_unpack_7z)]]&lt;br /&gt;
* [[Foobar2000:Components 0.9/Unpacker for JMA archive (foo_unpack_jma)|Unpacker for JMA archive (foo_unpack_jma)]]&lt;br /&gt;
* [[Foobar2000:Components 0.9/Unpacker for LHA archive (foo_unpack_lha)|Unpacker for LHA archive (foo_unpack_lha)]]&lt;br /&gt;
* [[Foobar2000:Components/UPnP/DLNA Renderer, Server, Control Point (foo_upnp)|UPnP/DLNA Renderer, Server, Control Point (foo_upnp)]]&lt;br /&gt;
* [[Foobar2000:Components 0.9/Winamp API Emulator (foo_winamp_spam)|Winamp API Emulator (foo_winamp_spam)]] Designed to create a fake Winamp 1.x window which will act as a wrapper between applications written to use the Winamp API and foobar2000.&lt;br /&gt;
&lt;br /&gt;
===Lyrics===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Gasazip Lyrics (foo_gasazip)|Gasazip Lyrics (foo_gasazip)]] Search for lyrics and displays it in external window.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Lyrics Show 2(foo_uie_lyrics2)|Lyrics Show 2(foo_uie_lyrics2)]] Downloads and displays lyrics, with LRC/timestamp support.&lt;br /&gt;
* [[Foobar2000:Components 0.9/LyricsDB (foo_lyricsdb)|LyricsDB (foo_lyricsdb)]] Search lyrics basing on song&#039;s artist title and sometimes album.&lt;br /&gt;
* [[Foobar2000:Components 0.9/foo_lyricsgrabber2|Lyrics Grabber 2 (foo_lyricsgrabber2)]] Downloads lyrics and stores them in tags.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Mini Lyrics (foo_ui_minilyrics)|Mini Lyrics (foo_ui_minilyrics)]] Lyrics viewer for synchronizing and displaying lyrics of the currently playing song.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Sakura Script Lyrics (foo_sstp_lyrics)|Sakura Script Lyrics (foo_sstp_lyrics)]] Plays a SAKURA script lyrics to a SSP client.&lt;br /&gt;
&lt;br /&gt;
===Notifier===&lt;br /&gt;
* [[Foobar2000:Components 0.9/AMIP Wrapper (foo_amipwrapper)|AMIP Wrapper (foo_amipwrapper)]] Complete now-playing plug-in for mIRC, PIRCH, Klient, Bersirc, other IRC and Mail clients, supporting full player control from mIRC, playlist search, clipboard integration, HTTP, dynamic image signatures, etc.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Listening To (foo_listeningto)|Listening To (foo_listeningto)]] Sends NowPlaying information to Miranda IM.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Miranda IM Notifier (foo_mim_notify)|Miranda IM Notifier (foo_mim_notify)]] Sends configurable information about the current playing song to Miranda-IM and shows popup windows with this info.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MSN avatar changer (foo_uie_albumart_msn)|MSN avatar changer (foo_uie_albumart_msn)]] Set currently playing song&#039;s album art as avatar.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MSN Now Playing (alt) (foo_msnalt)|MSN Now Playing (alt) (foo_msnalt)]] Show the current song as &amp;quot;Now Playing&amp;quot; in MSN and Windows Live messenger.&lt;br /&gt;
* [[Foobar2000:Components_0.9/WLM_Notifier_(foo_wlm)|Windows Live Notifier (foo_wlm)]] Shows current song as &amp;quot;Now Playing&amp;quot; in in MSN Messenger and Windows Live messenger (WLM). Supports unicode.&lt;br /&gt;
* [[Foobar2000:Components 0.9/On-Screen Display (foo_osd)|On-Screen Display (foo_osd)]] On screen display of track information and volume bar.&lt;br /&gt;
* [[Foobar2000:Components 0.9/On-Screen Display GDI (foo_osd_gdiplus)|On-Screen Display GDI (foo_osd_gdiplus)]] Same as foo_osd but uses GDI+ for osd drawing.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Pretty Popup (foo_prettypop)|Pretty Popup (foo_prettypop)]] Display a moderately sized popup of song information when a new song plays.&lt;br /&gt;
&lt;br /&gt;
===Online database===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Audioscrobbler (foo_audioscrobbler)|Audioscrobbler (foo_audioscrobbler)]] Audioscrobbler will send the name of every song you play on your computer to Last.fm. This effortlessly populates your profile to play radio you like and make personalized recommendations.&lt;br /&gt;
&lt;br /&gt;
===Online radio===&lt;br /&gt;
* [[Foobar2000:Components/Podcatcher (foo_podcatcher)|Podcatcher (foo_podcatcher)]] A podcatcher component for subscribing to, downloading, and playing RSS and Atom podcast feeds in foobar2000.&lt;br /&gt;
* [[Foobar2000:Components/Vorbis Streamer (foo_vorbisstream)|Vorbis Streamer (foo_vorbisstream)]] Streams Vorbis and associated metadata to Icecast2 and Shoutcast servers.&lt;br /&gt;
* [[Foobar2000:Components 0.9/XM Radio Online Player (foo_xm)|XM Radio Online Player (foo_xm)]] Allow you to listen to XM Radio channels over the Internet by using XM Radio Online.&lt;br /&gt;
&lt;br /&gt;
===Playlist tools===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Audioscrobble Charts (foo_scrobblecharts)|Audioscrobble Charts (foo_scrobblecharts)]] Generate a playlist from an artist&#039;s Last.fm chart. It also allows you to sort a selection in the playlist by the artist&#039;s charts.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Bin Pack (foo_binpack)|Bin Pack (foo_binpack)]] Creates playlists from a list with a maximum length.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Command Playlist (foo_cmd_playlist)|Command Playlist (foo_cmd_playlist)]] Add /playlist-activate:&amp;quot;Name&amp;quot; to the foobar command line to activate the named playlist.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Cuesheet Creator (foo_cuesheet_creator)|Cuesheet Creator (foo_cuesheet_creator)]] Cuesheet creator.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Database Search (foo_dbsearch)|Database Search (foo_dbsearch)]] Database search.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Default Video Player (foo_default_videoplayer)|Default Video Player (foo_default_videoplayer)]] Allows you to play your video clips from foobar playlist with default external player.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Delete Current (foo_deletecurrent)|Delete Current (foo_deletecurrent)]] Adds a menu item giving the possibility to delete from computer the current playing track.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Highlight Playing (foo_highlightplaying)|Highlight Playing (foo_highlightplaying)]] Highlights actual now playing item even when the playlist has been broken.&lt;br /&gt;
* [[Foobar2000:Components 0.9/History (foo_history)|History (foo_history)]] Very basic song history.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Inactive Tracks (foo_skip)|Inactive Tracks (foo_skip)]] Skips tracks that are marked via a tag as inactive.&lt;br /&gt;
* [[Foobar2000:Components 0.9/MeowDB (foo_meowdb)|MeowDB (foo_meowdb)]] Takes the Media Library and outputs the results to a form and uploads it to your server using the cURL library.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Navigator (foo_navigator)|Navigator (foo_navigator)]] Advanced history component.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Now Playing Simple (foo_np_simple)|Now Playing Simple (foo_np_simple)]] Simple now playing plugin to output formatted string to plain text file.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playback Queue Viewer (foo_pqview)|Playback Queue Viewer (foo_pqview)]] Playback queue viewer.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Bind (foo_playlist_bind)|Playlist Bind (foo_playlist_bind)]] Synchronize playlist with contents of specific directory.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Clear (foo_playlistclear)|Playlist Clear (foo_playlistclear)]] All playlists are cleared at startup.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Manager (foo_playlist_manager)|Playlist Manager (foo_playlist_manager)]] Playlist manager.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Name Enhenced (foo_playlist_name_enhanced)|Playlist Name Enhenced (foo_playlist_name_enhanced)]] Appends automatically playlist info (&amp;quot;items / length&amp;quot;) to all playlist names.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Tools (foo_utils)|Playlist Tools (foo_utils)]] Provides various general commands.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playlist Tools for Matroska (foo_utils_mka)|Playlist Tools for Matroska (foo_utils_mka)]] Provides various general commands.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Queue Manager (foo_queuemanager)|Queue Manager (foo_queuemanager)]] It provides a window that shows the queue&#039;s contents and allows you to delete parts of them or clear the whole queue. &#039;&#039;Non-ColumnUI obsolete version, try panel version instead.&#039;&#039;&lt;br /&gt;
* [[Foobar2000:Components 0.9/Randomized Playlist Entry (foo_random)|Randomized Playlist Entry (foo_random)]] Randomized playlist entry.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Rating (foo_rating)|Rating (foo_rating)]] Display an icon in the systray with a tooltip popup from which you can choose a rating between 1 and 5 for the currently playing file.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Remove Played (foo_removeplayed)|Remove Played (foo_removeplayed)]] It removes tracks from the playlist once they&#039;ve been played.&lt;br /&gt;
* [[Foobar2000:Components/Soft Playlists (foo_softplaylists)|Soft Playlists (foo_softplaylists)]] Can create different Last.fm related playlists, love tracks on Last.fm and save and load XSPF playlists (make playlists without hard paths).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Track Finder (foo_trackfinder)|Track Finder (foo_trackfinder)]] Displays a context menu that lets you quickly find songs based on their album title or artists name.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Track Position (foo_trackpos)|Track Position (foo_trackpos)]] Provides a new context menu item &amp;quot;place after current playing&amp;quot;, that allows you to place any tracks after the current playing one in the playing playlist.&lt;br /&gt;
* [[Foobar2000:Components 0.9/XSPF (foo_xspf)|XSPF (foo_xspf)]] Adds XSPF support. XSPF is an open, XML based playlist format.&lt;br /&gt;
&lt;br /&gt;
===Playback Statistics===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Playback Statistics Custom (foo_playback_custom)|Playback Statistics Custom (foo_playback_custom)]] Stores playback statistics in tags like foo_playcount_mod, with claimed faster response, and uses foo_custominfo db if file is unavailable for writing.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Play Count Mod (foo_playcount_mod)|Play Count Mod (foo_playcount_mod)]] Unofficial playcount modded to supress the update tag popups.&lt;br /&gt;
&lt;br /&gt;
===Remote control===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Advanced Controls (foo_advancedcontrols)|Advanced Controls (foo_advancedcontrols)]]  Control all the playback functions from icons in the Taskbar Notification Area (play, pause, next, previous, open)&lt;br /&gt;
* [[Foobar2000:Components 0.9/Bluetooth Control (foo_bluetooth_ctrl)|Bluetooth Control (foo_bluetooth_ctrl)]] Control your favourite music player using your favourite Symbian-based bluetooth enabled phone.&lt;br /&gt;
* [[Foobar2000:Components 0.9/COM Automation Server (foo_comserver2)|COM Automation Server (foo_comserver2)]] Allows controlling foobar2000 through COM Automation&lt;br /&gt;
* [[Foobar2000:Components 0.9/Control Server (foo_controlserver)|Control Server (foo_controlserver)]] Acts as a server to control Foobar2000. Connect with a telnet client and control it using ASCII commands.&lt;br /&gt;
* [[Foobar2000:Components 0.9/DDE Control (foo_ddecontrol)|DDE Control (foo_ddecontrol)]] Control foobar remotelly with DDE interprocess communication (interface in japanese only).&lt;br /&gt;
* [[Foobar2000:Components 0.9/HTTP Writer (foo_write_http)|HTTP Writer (foo_write_http)]] It&#039;s TCP/IP server that listens on a specified port for incoming requests such as play, stop, etc.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Joystick Control (foo_joystick_control)|Joystick Control (foo_joystick_control)]] Control foobar2000 from a joystick/gamepad.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Minibar2k (foo_Minibar2k)|Minibar2k (foo_Minibar2k)]] Control Foobar2k from your PDA (PocketPC based).&lt;br /&gt;
* [[Foobar2000:Components 0.9/Remote Control (foo_remotecontrol)|Remote Control (foo_remotecontrol)]] Adds support to Melloware Intelliremote software which claims to work with Creative remote control (Soundblaster Live!, Audigy, Extigy, Audigy ZS and Soundblaster X-Fi.)&lt;br /&gt;
* [[Foobar2000:Components 0.9/RM-1800 (foo_mr1800)|RM-1800 (foo_mr1800)]] Adds support of Creative X-Fi&#039;s remote (RM-1800).&lt;br /&gt;
* [[Foobar2000:Components 0.9/RM-X Media Edition (foo_rmx)|RM-X Media Edition (foo_rmx)]] Yet another plugin for remote control. SHAREWARE.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Titlebar (foo_managedWrapper)|Titlebar (foo_managedWrapper)]] Create a personal title bar that shows the currently playing song on the top of the screen all the time. It supports custom-made skins.&lt;br /&gt;
* [[Foobar2000:Components 0.9/WinLIRC Client (foo_lirc)|WinLIRC Client (foo_lirc)]] Control Foobar from a remote control.&lt;br /&gt;
&lt;br /&gt;
===Tagging===&lt;br /&gt;
* [[Foobar2000:Components 0.9/Chacon (foo_chacon)|Chacon (foo_chacon)]] Chacon is a simple tool for fixing tags by converting them between different character sets.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Custom Info (foo_custominfo)|Custom Info (foo_custominfo)]] Allows you to set info fields for files without modifying them. &lt;br /&gt;
* [[Foobar2000:Components 0.9/Discogs (foo_discogs)|Discogs (foo_discogs)]] Retrieve info and album art from Discogs.com database.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Freedb Tagger (foo_freedb2)|Freedb Tagger (foo_freedb2)]] Freedb.org tagger. Now included with official foobar2000 installers.&lt;br /&gt;
* [[Foobar2000:Components 0.9/Live Show Tagger (foo_tradersfriend)|Live Show Tagger (foo_tradersfriend)]] Live show tagger.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
* [http://www.foobar2000.org/components Official third-party components site]&lt;br /&gt;
* [http://www.hydrogenaudio.org/forums/index.php?showtopic=42730&amp;amp;st=0 List of components] from earlier versions not yet ported to 0.9.x.&lt;br /&gt;
&lt;br /&gt;
* [[foobar2000:foobar2000|Go back to Main Page]]&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22236</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22236"/>
		<updated>2010-12-12T17:02:01Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{fb2k}}&lt;br /&gt;
[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the DSP Manager or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with keyboard shortcut binding&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). Al the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches.&lt;br /&gt;
* &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&amp;lt;br/&amp;gt;Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
* &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&amp;lt;br/&amp;gt;The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
* &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&amp;lt;br/&amp;gt;In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22235</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22235"/>
		<updated>2010-12-12T17:01:36Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{fb2k}}&lt;br /&gt;
[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the DSP Manager or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with keyboard shortcut binding&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;br /&gt;
=Settings=&lt;br /&gt;
This component has only advanced settings placed in the corresponding section of Foobar2000 preferences. Depending on the component version they can be found either in the Playback or VST category (the latter is true for v0.6+). Al the problems that mentioned here are caused by the differences between Foobar2000 and VST approaches.&lt;br /&gt;
* &#039;&#039;VST declicker size (256*n samples, 4 by default)&#039;&#039;&amp;lt;br/&amp;gt;Number of zero samples to be passed through VST on transport switches to suppress plug-in&#039;s output data that can produce click at the beginning of the next track, i.e. ringing of filters or delay effect tail. The latter requires this number to be increased.&lt;br /&gt;
* &#039;&#039;VST idle time to unload DLL (0-10,000 ms)&#039;&#039;&lt;br /&gt;
The delay is needed to suppress excessive unload-load cycles between tracks, i.e. to keep VST plug-ins loaded as it is supposed to be for them.&lt;br /&gt;
* &#039;&#039;Limit number of outputs for VST effects&#039;&#039;&lt;br /&gt;
In contrast to DAW, audio players don&#039;t manage outputs of their DSPs. Besides, many VST plug-ins don&#039;t report activity of their outputs. Hence the only way to output data from 16-channel VST is to drop some of the channels according to the setting.&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22234</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22234"/>
		<updated>2010-12-12T15:54:41Z</updated>

		<summary type="html">&lt;p&gt;Yegor: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{fb2k}}&lt;br /&gt;
[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: &#039;&#039;Preferences → Components → VST plug-ins&#039;&#039;. Restart is required for the changes to take effect. After the restart open the DSP Manager or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|x185px]] → [[File:Preferences DSP Manager.png|x185px]] [[File:Converter Setup VST.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
Use &#039;&#039;View → DSP&#039;&#039; menu to access DSP configuration windows. Bind commands by their number to keyboard shortcuts if necessary.&lt;br /&gt;
&lt;br /&gt;
[[File:Fb2k modeless dsp menu.png|x185px]] [[File:Preferences Keyboard Shortcuts DSP modeless.png|x185px]]&lt;br /&gt;
&lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with keyboard shortcut binding&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=File:Fb2k_modeless_dsp_menu.png&amp;diff=22233</id>
		<title>File:Fb2k modeless dsp menu.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=File:Fb2k_modeless_dsp_menu.png&amp;diff=22233"/>
		<updated>2010-12-12T15:52:34Z</updated>

		<summary type="html">&lt;p&gt;Yegor: uploaded a new version of &amp;quot;File:Fb2k modeless dsp menu.png&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Screenshot of the Foobar2000 menu showing items for modeless access to DSP configuration windows&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=File:Preferences_Keyboard_Shortcuts_DSP_modeless.png&amp;diff=22232</id>
		<title>File:Preferences Keyboard Shortcuts DSP modeless.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=File:Preferences_Keyboard_Shortcuts_DSP_modeless.png&amp;diff=22232"/>
		<updated>2010-12-12T15:49:53Z</updated>

		<summary type="html">&lt;p&gt;Yegor: Screenshot of keyboard shortcuts section of Foobar2000 preferences dialog box showing command binding feature.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Screenshot of keyboard shortcuts section of Foobar2000 preferences dialog box showing command binding feature.&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=File:Fb2k_modeless_dsp_menu.png&amp;diff=22231</id>
		<title>File:Fb2k modeless dsp menu.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=File:Fb2k_modeless_dsp_menu.png&amp;diff=22231"/>
		<updated>2010-12-12T15:44:48Z</updated>

		<summary type="html">&lt;p&gt;Yegor: Screenshot of the Foobar2000 menu showing items for modeless access to DSP configuration windows&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Screenshot of the Foobar2000 menu showing items for modeless access to DSP configuration windows&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=File:Converter_Setup_VST.png&amp;diff=22230</id>
		<title>File:Converter Setup VST.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=File:Converter_Setup_VST.png&amp;diff=22230"/>
		<updated>2010-12-12T15:32:41Z</updated>

		<summary type="html">&lt;p&gt;Yegor: Screenshot of Converter Setup dialog box in Foobar2000 featuring some VST plug-ins&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Screenshot of Converter Setup dialog box in Foobar2000 featuring some VST plug-ins&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22229</id>
		<title>Foobar2000:Components/VST 2.4 adapter (foo vst)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Components/VST_2.4_adapter_(foo_vst)&amp;diff=22229"/>
		<updated>2010-12-12T15:31:54Z</updated>

		<summary type="html">&lt;p&gt;Yegor: Created page with &amp;quot;{{fb2k}} VST adapter {{Foobar Component Infobox | name = foo_vst | screenshot = 250px | caption = VST 2.4 ada…&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{fb2k}}&lt;br /&gt;
[[Category:Foobar2000 3rd-Party Components|VST adapter]]&lt;br /&gt;
{{Foobar Component Infobox&lt;br /&gt;
| name = foo_vst&lt;br /&gt;
| screenshot = [[Image:Fb2k-vsts.png|250px]]&lt;br /&gt;
| caption = VST 2.4 adapter&lt;br /&gt;
| maintainer = Yegor Petrov&lt;br /&gt;
| stable_release = 0.5.2.0&lt;br /&gt;
| preview_release = 0.6.0.0&lt;br /&gt;
| foobar_version = 1.0+&lt;br /&gt;
| use = VST plug-ins as native Foobar2000 DSPs&lt;br /&gt;
| license = Proprietary&lt;br /&gt;
| website = None&lt;br /&gt;
| discussion_thread = [http://www.hydrogenaudio.org/forums/index.php?showtopic=84947 Discussion and download page]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;VST 2.4 adapter&#039;&#039;&#039; is a component which aims to allow Foobar2000 users to use VST 2.4 plug-ins equally with “native” ones.&lt;br /&gt;
=Usage=&lt;br /&gt;
First, add VST plug-ins you would like to use in the VST manager: Preferences → Components → VST plug-ins. Restart is required for the changes to take effect. After the restart open the DSP Manager or some conversion dialog box to try the plug-ins you&#039;ve added.&lt;br /&gt;
&lt;br /&gt;
[[File:Preferences_VST_plug-ins.png|250px]] [[File:Preferences DSP Manager.png|250px]] &lt;br /&gt;
=Features=&lt;br /&gt;
The component has support for the following feature set:&lt;br /&gt;
* Multiple instances&lt;br /&gt;
* Multiple channels (including asymmetric configs like 2.0 → 5.1)&lt;br /&gt;
* Chain presets and secondary DSP chains (“convert” feature)&lt;br /&gt;
* Modeless DSP configuration windows with keyboard shortcut binding&lt;br /&gt;
* FXP import/export&lt;br /&gt;
==Limitations and known issues==&lt;br /&gt;
* Supports only up to 20 VST entries due to API limitations (not to be confused with particular instances in a chain).&lt;br /&gt;
* No support for VSTs without custom editors yet (to be implemented in the near future).&lt;br /&gt;
* Doesn&#039;t support x64 VST plug-ins: Foobar2000 is 32-bit application.&lt;br /&gt;
* Smooth track switching must be disabled for some plug-ins to work (so they will be unloaded in the same thread as the one they were loaded in).&lt;br /&gt;
* Modeless DSP configuration functionality isn&#039;t well synchronized with the DSP manager in the Preferences window.&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=File:Preferences_DSP_Manager.png&amp;diff=22228</id>
		<title>File:Preferences DSP Manager.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=File:Preferences_DSP_Manager.png&amp;diff=22228"/>
		<updated>2010-12-12T15:28:43Z</updated>

		<summary type="html">&lt;p&gt;Yegor: Screenshot of DSP manager of Foobar2000 containing VST plug-ins&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Screenshot of DSP manager of Foobar2000 containing VST plug-ins&lt;/div&gt;</summary>
		<author><name>Yegor</name></author>
	</entry>
</feed>