]> Shamusworld >> Repos - ardour-manual/blob - include/plugin-manager.html
e56a62a34324c2e0ea076d24f47f122e9012055e
[ardour-manual] / include / plugin-manager.html
1
2 <p>
3   The <dfn>Plugin Manager</dfn> provides a convenient interface to various
4   operations on plugins and is the primary troubleshooting tools when something
5   goes wrong with plugins. It works on both physical plugin files and
6   the plugins index.
7 </p>
8
9 <figure class=center>
10 <img src="/images/plugin-manager.png" alt="The Plugin Manager window" width="100%" />
11 <figcaption class=center>The Plugin Manager window</figcaption>
12 </figure>
13
14 <h2>What is a plugins index?</h2>
15
16 <p>
17   For each type of a plugin (e.g. VST3 or LV2) there are pre-configured paths
18   where these plugins are located. Every time Ardour runs, it re-scans plugins
19   in these paths and recreates an index — a kind of inventory of available
20   plugins. Whenever you open the <a href="@@plugin-selector">Plugin Selector</a>
21   dialog, Ardour reads the list of available plugins from that index and
22   displays them for you to pick.
23 </p>
24
25 <p>
26   Re-scanning paths is important because it's common for plugins to change on
27   the disk (e.g. when you installed a newer version) or get removed (when you
28   don't need a plugin anymore). Sometimes plugins get corrupted due to
29   a hardware failure. Indexing them often helps identifying issues early on,
30   and the Plugin Manager helps reviewing the general state of affairs with
31   plugins.
32 </p>
33
34 <h2>Plugins info</h2>
35
36 The main part of the Plugin Manager window is the table where all plugins known
37 to Ardour are listed. You can use it to both view information about a plugin and 
38 control some of its aspects:
39
40 <table class="dl">
41   <tr>
42       <th>Status</th>
43       <td>Ardour will displays the status of every plug-in file. See below
44       for more information</td>
45   </tr>
46   <tr>
47       <th>Ign</th>
48       <td>Do not load this plugin file at all</td>
49   </tr>
50   <tr>
51       <th>Fav</th>
52       <td>Set or unset the Favorite status for a plugin</td>
53   </tr>
54   <tr>
55       <th>Hide</th>
56       <td>Load this plugin file, but do not show it in the Plugin Selector</td>
57   </tr>
58   <tr>
59       <th>Type</th>
60       <td>The name of the API this plugin has been built with:
61       VST2, VST3, AU, LADSPA, LV2</td>
62   </tr>
63   <tr>
64       <th>File/ID</th>
65       <td>Displays the file name for LADSPA, VST2, and VST3, as well as
66       the ID for LV2 and AU</td>
67   </tr>
68   <tr>
69       <th>Name</th>
70       <td>User-visible name of the plugin</td>
71   </tr>
72   <tr>
73       <th>Creator</th>
74       <td>Developer of team of developers who created the plugin</td>
75   </tr>
76   <tr>
77       <th>Tags</th>
78       <td>Metadata that classifies the plugin by type,
79       e.g. 'instrument|synth' or 'analyser'</td>
80   </tr>
81 </table>
82
83 <p>
84   The Status field specifically has the following options: 
85 </p>
86
87 <table class="dl">
88   <tr>
89     <th>OK</th>
90     <td>The plugin file has loaded without any issues and the information
91     in the cache about it is up to date</td>
92   </tr>
93   <tr>
94     <th>New</th>
95     <td>The plugin file has just been discovered and successfully loaded
96     for the first time</td>
97   </tr>
98   <tr>
99     <th>Updated</th>
100     <td>The plugin file changed on the disk, the plugin cache has been updated
101     accordingly, the plugin file loaded successfully</td>
102   </tr>
103   <tr>
104     <th>Concealed</th>
105     <td>A VST2 plugin will be hidden from Plugin Selector, if a corresponding
106     VST3 plugin exists. The same applies to LV1 (LADSPA) and LV2</td>
107   </tr>
108   <tr>
109     <th>Error</th>
110     <td>There was a problem loading the plugin file</td>
111   </tr>
112   <tr>
113     <th>Stale</th>
114     <td>A plugin changed on the disk but hasn't been re-scanned
115     by Ardour yet</td>
116   </tr>
117   <tr>
118     <th>Incompatible</th>
119     <td>Scan the plugin failed. Typical reasons are 32/64-bit mismatch,
120     attempt to load a .dll on Linux or a .dylib on Windows</td>
121   </tr>
122 </table>
123
124 <p>
125   The <kbd class="menu">Plugin Count</kbd> section in the sidebar provides
126   basic information on available plugins: how many plugins of every supported
127   type are available through Ardour in total, how many failed to load, and 
128   how many are missing.
129 </p>
130
131 <h2>Searching</h2>
132
133 <p>
134   You can search for a specific plugin or a group of plugins. Simply place the
135   cursor inside the input text box in the upper left corner and type. Ardour
136   will search in the index
137 </p>
138
139 <p>
140   By default, Ardour will search through plugin names, makers, and file names.
141   Additionally, you can search through Type, Tags, and Paths.
142 </p>
143
144 <h2>Scan actions</h2>
145
146 <p>
147   This section of the sidebar contains commands that operate
148   on the plugins index.
149 </p>
150
151 <table class="dl">
152   <tr>
153     <th>Discover New/Updated</th>
154     <td>This will run a full scan on all known paths to plugin of all supported types</td>
155   </tr>
156   <tr>
157     <th>Update Index Only</th>
158     <td>This will check which plugins were updated without scanning them</td>
159   </tr>
160   <tr>
161     <th>Re-scan Selected</th>
162     <td>This will re-scan plugin files selected in the main part of the window</td>
163   </tr>
164   <tr>
165     <th>Re-scan Faulty</th>
166     <td>This will only re-scan plugins that previously failed to load</td>
167   </tr>
168   <tr>
169     <th>Re-scan All</th>
170     <td>This will re-scan all currently known plugins</td>
171   </tr>
172   <tr>
173     <th>Clear Staled Scan Log</th>
174     <td>This will remove all entries from the index on plugins that changed
175     on the disk but haven't been re-scanned</td>
176   </tr>
177 </table>
178
179 <h2>Preferences</h2>
180
181 <p>
182   This section of the sidebar allows settings paths to VST2 and VST3 plugins,
183   as well as quickly open the <kbd class="menu">Preferences</kbd> dialog
184   on the <kbd class="menu">Plugins</kbd> page where you can set various options
185   for scanning plugins and controlling their default behavior.
186 </p>