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
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,9 @@
8
8
# # Human readable format name
9
9
# name = "MyFormatName"
10
10
#
11
+
# # Link to the homepage
12
+
# link = "https://example.com"
13
+
#
11
14
# # Short synopsis of the format
12
15
# description = "This format was designed for Plan9 computers only"
13
16
#
@@ -27,6 +30,7 @@
27
30
28
31
[[formats]]
29
32
name = "VST"
33
+
link = "https://steinbergmedia.github.io/vst3_dev_portal/pages/index.html"
30
34
description = "VST can refer to several different versions of the VST format by Steinberg. VST2 was one of the most common standards, but is now unlicensed. Instead, VST3 is recommended and is generally supported in most DAWs. Note that the Rust vst3-sys crate currently relies on GPLv3 code."
31
35
license = { name = "GPLv3 or Proprietary", url = "https://developer.steinberg.help/pages/viewpage.action?pageId=9797944" }
32
36
crates = [
@@ -37,9 +41,10 @@ resources = []
37
41
38
42
[[formats]]
39
43
name = "AudioUnit"
44
+
link = "https://developer.apple.com/documentation/audiounit/"
40
45
description = "AudioUnit (AU) is only available on Apple platforms. AU v2 is simlar to VST, and AU v3 follows an Apple framework approach, which is harder to implement without Apple tools. Currently, no Rust libraries implement the AudioUnit standard."
41
46
license = { name = "Proprietary", url = "https://developer.apple.com/licensing-trademarks/audio-units/" }
description = "LV2 is only supported on Linux with a few exceptions. One interesting feature is that all LV2 plugin hosts and plugins are backwards compatible with previous versions."
52
58
license = { name = "ISC", url = "https://gitlab.com/lv2/lv2/-/blob/master/COPYING" }
53
59
crates = [
@@ -60,9 +66,7 @@ resources = [
60
66
61
67
[[formats]]
62
68
name = "CLAP"
69
+
link = "https://cleveraudio.org/"
63
70
description = "CLAP is a relatively new plugin format with permissive licensing. It does not currently have wide support outside of Bitwig."
64
71
license = { name = "MIT", url = "https://github.com/free-audio/clap/blob/main/LICENSE" }
65
-
crates = [
66
-
{ name = "clap-lv2", url = "https://github.com/glowcoil/clap-sys" },
67
-
]
68
-
72
+
crates = [{ name = "clap-lv2", url = "https://github.com/glowcoil/clap-sys" }]
0 commit comments