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
Copy file name to clipboardExpand all lines: content/formats.toml
+25-5Lines changed: 25 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,38 @@
1
1
# Audio plugin formats
2
2
3
+
# Format for specifying a format 🤔
4
+
#
5
+
# ```
6
+
# [[formats]]
7
+
#
8
+
# # Human readable format name
9
+
# name = "MyFormatName"
10
+
#
11
+
# # Short synopsis of the format
12
+
# description = "This format was designed for Plan9 computers only"
13
+
#
14
+
# # Whether or not the format is permissively licensed
15
+
# proprietary = false
16
+
#
17
+
# # Optionally, list crates that work with this format
18
+
# crates = [
19
+
# { name = "plan9-plug", url = "https://example.com/mycoolsite/plan9-plugin" },
20
+
# ]
21
+
#
22
+
# # Optionally, list additional resources on this format
23
+
# resources = [
24
+
# { name = "My link docs name", url = "http://example.com/docs" },
25
+
# ]
26
+
# ```
27
+
3
28
[[formats]]
4
-
# Human readable format name
5
29
name = "VST"
6
-
# Short synopsis of the format
7
30
description = "VST2 was one of the most common standards, but is now unlicensed. Instead, VST3 is recommended. VSTs are generally supported in most DAWs."
8
-
# Whether or not the format is permissively licensed
9
31
proprietary = true
10
-
# Optional crates that work with this format
11
32
crates = [
12
33
{ name = "vst", url = "https://github.com/RustAudio/vst-rs" },
13
34
{ name = "vst3-sys", url = "https://github.com/RustAudio/vst3-sys" },
0 commit comments