You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What you actually need to copy is the plugin bundle itself, not the `Release` or `VST3` / `AU` / `LV2` folder that contains it.
12
+
13
+
解压后大致会看到这样的结构:
14
+
After extraction, the folder structure will look roughly like this:
15
+
16
+
```text
17
+
plugin-win-vX.Y.Z.zip
18
+
plugin-win/
19
+
PluginName_artefacts/
20
+
VST3/
21
+
PluginName.vst3/
22
+
23
+
plugin-macos-vX.Y.Z.zip
24
+
plugin-macos/
25
+
PluginName_artefacts/
26
+
AU/
27
+
PluginName.component/
28
+
VST3/
29
+
PluginName.vst3/
30
+
31
+
plugin-linux-vX.Y.Z.zip
32
+
plugin-linux/
33
+
PluginName_artefacts/
34
+
LV2/
35
+
PluginName.lv2/
36
+
VST3/
37
+
PluginName.vst3/
38
+
```
39
+
40
+
安装时请直接复制这些文件夹之一:
41
+
When installing, copy one of these folders directly:
42
+
43
+
-`PluginName.vst3`
44
+
-`PluginName.component`
45
+
-`PluginName.lv2`
46
+
47
+
常见安装目录:
48
+
Common install locations:
49
+
50
+
- Windows VST3: `C:\Program Files\Common Files\VST3\`
51
+
- macOS VST3: `/Library/Audio/Plug-Ins/VST3/` or `~/Library/Audio/Plug-Ins/VST3/`
52
+
- macOS AU: `/Library/Audio/Plug-Ins/Components/` or `~/Library/Audio/Plug-Ins/Components/`
53
+
- Linux LV2: `~/.lv2/` or `/usr/lib/lv2/`
54
+
- Linux VST3: `~/.vst3/` or `/usr/lib/vst3/`
55
+
56
+
例如在 Windows 上,不要复制 `VST3` 文件夹本身,而是把其中的 `PluginName.vst3` 整个文件夹复制到 `C:\Program Files\Common Files\VST3\`。
57
+
For example, on Windows, do not copy the `VST3` folder itself. Copy the whole `PluginName.vst3` folder inside it to `C:\Program Files\Common Files\VST3\`.
58
+
59
+
额外的,macOS 用户还需要做以下工作:
60
+
Additionally, macOS users may need to do the following:
0 commit comments