@open-audio-stack/core 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/types/FileFormat.d.ts +2 -0
- package/build/types/FileFormat.js +17 -5
- package/build/types/PluginFormat.d.ts +1 -1
- package/build/types/PluginFormat.js +1 -1
- package/build/types/PluginType.d.ts +1 -0
- package/build/types/PluginType.js +6 -0
- package/build/types/PresetFormat.d.ts +10 -3
- package/build/types/PresetFormat.js +53 -11
- package/build/types/PresetType.d.ts +6 -1
- package/build/types/PresetType.js +34 -4
- package/build/types/ProjectFormat.d.ts +3 -0
- package/build/types/ProjectFormat.js +20 -2
- package/package.json +1 -1
|
@@ -1,14 +1,21 @@
|
|
|
1
1
|
export var FileFormat;
|
|
2
2
|
(function (FileFormat) {
|
|
3
|
+
FileFormat["AppImage"] = "appimage";
|
|
3
4
|
FileFormat["AppleDiskImage"] = "dmg";
|
|
4
5
|
FileFormat["DebianPackage"] = "deb";
|
|
5
6
|
FileFormat["ExecutableInstaller"] = "exe";
|
|
7
|
+
FileFormat["RedHatPackage"] = "rpm";
|
|
6
8
|
FileFormat["Tarball"] = "tar.gz";
|
|
7
9
|
FileFormat["TarballLegacy"] = "tgz";
|
|
8
10
|
FileFormat["WindowsInstaller"] = "msi";
|
|
9
11
|
FileFormat["Zip"] = "zip";
|
|
10
12
|
})(FileFormat || (FileFormat = {}));
|
|
11
13
|
export const fileFormats = [
|
|
14
|
+
{
|
|
15
|
+
description: 'App package for Linux systems.',
|
|
16
|
+
value: FileFormat.AppImage,
|
|
17
|
+
name: 'AppImage',
|
|
18
|
+
},
|
|
12
19
|
{
|
|
13
20
|
description: 'Disk image format used on macOS.',
|
|
14
21
|
value: FileFormat.AppleDiskImage,
|
|
@@ -22,26 +29,31 @@ export const fileFormats = [
|
|
|
22
29
|
{
|
|
23
30
|
description: 'Executable file format used by Windows.',
|
|
24
31
|
value: FileFormat.ExecutableInstaller,
|
|
25
|
-
name: 'Executable
|
|
32
|
+
name: 'Executable installer',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
description: 'Originally developed for Red Hat, but is now used in many other Linux distributions.',
|
|
36
|
+
value: FileFormat.RedHatPackage,
|
|
37
|
+
name: 'Red Hat package',
|
|
26
38
|
},
|
|
27
39
|
{
|
|
28
40
|
description: 'Compressed archive format common on Linux and Unix systems.',
|
|
29
41
|
value: FileFormat.Tarball,
|
|
30
|
-
name: 'Tarball
|
|
42
|
+
name: 'Tarball',
|
|
31
43
|
},
|
|
32
44
|
{
|
|
33
45
|
description: 'Legacy compressed archive format similar to .tar.gz.',
|
|
34
46
|
value: FileFormat.TarballLegacy,
|
|
35
|
-
name: 'Tarball
|
|
47
|
+
name: 'Tarball (alt)',
|
|
36
48
|
},
|
|
37
49
|
{
|
|
38
50
|
description: 'Installer format for Windows.',
|
|
39
51
|
value: FileFormat.WindowsInstaller,
|
|
40
|
-
name: 'Windows
|
|
52
|
+
name: 'Windows installer',
|
|
41
53
|
},
|
|
42
54
|
{
|
|
43
55
|
description: 'Widely-used compressed file format compatible with many operating systems.',
|
|
44
56
|
value: FileFormat.Zip,
|
|
45
|
-
name: 'Zip
|
|
57
|
+
name: 'Zip',
|
|
46
58
|
},
|
|
47
59
|
];
|
|
@@ -2,8 +2,8 @@ export declare enum PluginFormat {
|
|
|
2
2
|
AudioUnits = "component",
|
|
3
3
|
AvidAudioExtension = "aax",
|
|
4
4
|
CleverAudioPlugin = "clap",
|
|
5
|
-
RealTimeAudioSuite = "rta",
|
|
6
5
|
LADSPAVersion2 = "lv2",
|
|
6
|
+
RealTimeAudioSuite = "rta",
|
|
7
7
|
SoundFont2 = "sf2",
|
|
8
8
|
SFZ = "sfz",
|
|
9
9
|
TimeDivisionMultiplexing = "tdm",
|
|
@@ -3,8 +3,8 @@ export var PluginFormat;
|
|
|
3
3
|
PluginFormat["AudioUnits"] = "component";
|
|
4
4
|
PluginFormat["AvidAudioExtension"] = "aax";
|
|
5
5
|
PluginFormat["CleverAudioPlugin"] = "clap";
|
|
6
|
-
PluginFormat["RealTimeAudioSuite"] = "rta";
|
|
7
6
|
PluginFormat["LADSPAVersion2"] = "lv2";
|
|
7
|
+
PluginFormat["RealTimeAudioSuite"] = "rta";
|
|
8
8
|
PluginFormat["SoundFont2"] = "sf2";
|
|
9
9
|
PluginFormat["SFZ"] = "sfz";
|
|
10
10
|
PluginFormat["TimeDivisionMultiplexing"] = "tdm";
|
|
@@ -4,6 +4,7 @@ export var PluginType;
|
|
|
4
4
|
PluginType["Generator"] = "generator";
|
|
5
5
|
PluginType["Instrument"] = "instrument";
|
|
6
6
|
PluginType["Preset"] = "preset";
|
|
7
|
+
PluginType["Sampler"] = "sampler";
|
|
7
8
|
PluginType["Tool"] = "tool";
|
|
8
9
|
})(PluginType || (PluginType = {}));
|
|
9
10
|
export const pluginTypes = [
|
|
@@ -27,6 +28,11 @@ export const pluginTypes = [
|
|
|
27
28
|
value: PluginType.Preset,
|
|
28
29
|
name: 'Preset',
|
|
29
30
|
},
|
|
31
|
+
{
|
|
32
|
+
description: 'Sample playback based on audio or midi input.',
|
|
33
|
+
value: PluginType.Sampler,
|
|
34
|
+
name: 'Sampler',
|
|
35
|
+
},
|
|
30
36
|
{
|
|
31
37
|
description: 'Helper tool which provides automations and other useful functions for music.',
|
|
32
38
|
value: PluginType.Tool,
|
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
export declare enum PresetFormat {
|
|
2
|
-
|
|
2
|
+
AudioUnits = "aupreset",
|
|
3
|
+
AvidAudioExtension = "tfx",
|
|
4
|
+
CleverAudioPlugin = "clap",
|
|
5
|
+
LADSPAVersion2 = "lv2",
|
|
3
6
|
NativeInstruments = "nksf",
|
|
4
|
-
|
|
5
|
-
|
|
7
|
+
RealTimeAudioSuite = "rtas",
|
|
8
|
+
SoundFont2 = "preset.sf2",
|
|
9
|
+
SFZ = "preset.sfz",
|
|
10
|
+
TimeDivisionMultiplexing = "tdm",
|
|
11
|
+
VSTBank = "fxb",
|
|
12
|
+
VSTPreset = "fxp",
|
|
6
13
|
VST3 = "vstpreset"
|
|
7
14
|
}
|
|
8
15
|
export interface PresetFormatOption {
|
|
@@ -1,35 +1,77 @@
|
|
|
1
1
|
export var PresetFormat;
|
|
2
2
|
(function (PresetFormat) {
|
|
3
|
-
PresetFormat["
|
|
3
|
+
PresetFormat["AudioUnits"] = "aupreset";
|
|
4
|
+
PresetFormat["AvidAudioExtension"] = "tfx";
|
|
5
|
+
PresetFormat["CleverAudioPlugin"] = "clap";
|
|
6
|
+
PresetFormat["LADSPAVersion2"] = "lv2";
|
|
4
7
|
PresetFormat["NativeInstruments"] = "nksf";
|
|
5
|
-
PresetFormat["
|
|
6
|
-
PresetFormat["
|
|
8
|
+
PresetFormat["RealTimeAudioSuite"] = "rtas";
|
|
9
|
+
PresetFormat["SoundFont2"] = "preset.sf2";
|
|
10
|
+
PresetFormat["SFZ"] = "preset.sfz";
|
|
11
|
+
PresetFormat["TimeDivisionMultiplexing"] = "tdm";
|
|
12
|
+
PresetFormat["VSTBank"] = "fxb";
|
|
13
|
+
PresetFormat["VSTPreset"] = "fxp";
|
|
7
14
|
PresetFormat["VST3"] = "vstpreset";
|
|
8
15
|
})(PresetFormat || (PresetFormat = {}));
|
|
9
16
|
export const presetFormats = [
|
|
10
17
|
{
|
|
11
18
|
description: "Apple's proprietary plugin format for macOS and iOS.",
|
|
12
|
-
value: PresetFormat.
|
|
19
|
+
value: PresetFormat.AudioUnits,
|
|
13
20
|
name: 'Audio Unit preset',
|
|
14
21
|
},
|
|
22
|
+
{
|
|
23
|
+
description: "Avid's plugin format for Pro Tools, offering deep integration.",
|
|
24
|
+
value: PresetFormat.AvidAudioExtension,
|
|
25
|
+
name: 'Avid Audio preset',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
description: 'Modern open-source plugin format designed for performance and flexibility.',
|
|
29
|
+
value: PresetFormat.CleverAudioPlugin,
|
|
30
|
+
name: 'Clever Audio preset',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
description: 'Linux-friendly plugin format primarily used in open-source environments.',
|
|
34
|
+
value: PresetFormat.LADSPAVersion2,
|
|
35
|
+
name: 'LADSPA Version 2 preset',
|
|
36
|
+
},
|
|
15
37
|
{
|
|
16
38
|
description: 'Used by Native Instruments for their software instruments and effects.',
|
|
17
39
|
value: PresetFormat.NativeInstruments,
|
|
18
40
|
name: 'Native Instruments preset',
|
|
19
41
|
},
|
|
20
42
|
{
|
|
21
|
-
description:
|
|
22
|
-
value: PresetFormat.
|
|
23
|
-
name: '
|
|
43
|
+
description: "Real-time plugin format used in Avid's Pro Tools.",
|
|
44
|
+
value: PresetFormat.RealTimeAudioSuite,
|
|
45
|
+
name: 'Real-Time AudioSuite preset',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
description: 'Widely used format for sound samples in musical instruments.',
|
|
49
|
+
value: PresetFormat.SoundFont2,
|
|
50
|
+
name: 'SoundFont 2 preset',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
description: 'An open standard for defining instrument patches and sound samples.',
|
|
54
|
+
value: PresetFormat.SFZ,
|
|
55
|
+
name: 'SFZ preset',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
description: 'Legacy plugin format used in early Pro Tools systems.',
|
|
59
|
+
value: PresetFormat.TimeDivisionMultiplexing,
|
|
60
|
+
name: 'Time-Division-Multiplexing preset',
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
description: 'Standard bank preset format for VST plugins.',
|
|
64
|
+
value: PresetFormat.VSTBank,
|
|
65
|
+
name: 'Virtual Studio Technology bank preset',
|
|
24
66
|
},
|
|
25
67
|
{
|
|
26
|
-
description: '
|
|
27
|
-
value: PresetFormat.
|
|
28
|
-
name: '
|
|
68
|
+
description: 'Standard preset format for VST plugins, allowing users to save and load settings.',
|
|
69
|
+
value: PresetFormat.VSTPreset,
|
|
70
|
+
name: 'Virtual Studio Technology preset',
|
|
29
71
|
},
|
|
30
72
|
{
|
|
31
73
|
description: 'Preset format for VST3 plugins including new features.',
|
|
32
74
|
value: PresetFormat.VST3,
|
|
33
|
-
name: '
|
|
75
|
+
name: 'Virtual Studio Technology 3 preset',
|
|
34
76
|
},
|
|
35
77
|
];
|
|
@@ -1,12 +1,42 @@
|
|
|
1
1
|
export var PresetType;
|
|
2
2
|
(function (PresetType) {
|
|
3
|
-
PresetType["
|
|
3
|
+
PresetType["Chain"] = "chain";
|
|
4
|
+
PresetType["Layout"] = "layout";
|
|
5
|
+
PresetType["Mapping"] = "mapping";
|
|
6
|
+
PresetType["Patch"] = "patch";
|
|
7
|
+
PresetType["Pattern"] = "pattern";
|
|
8
|
+
PresetType["Theme"] = "theme";
|
|
4
9
|
})(PresetType || (PresetType = {}));
|
|
5
10
|
// TODO define preset types.
|
|
6
11
|
export const presetTypes = [
|
|
7
12
|
{
|
|
8
|
-
description: '
|
|
9
|
-
value: PresetType.
|
|
10
|
-
name: '
|
|
13
|
+
description: 'Saved configurations of multiple plugins with specific routing, processing order, and parameter settings, often used in mixing and mastering plugins.',
|
|
14
|
+
value: PresetType.Chain,
|
|
15
|
+
name: 'Chain',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
description: 'Saved configurations of a plugin’s overall layout or workspace, especially in modular plugins, which help streamline specific workflows or user preferences.',
|
|
19
|
+
value: PresetType.Layout,
|
|
20
|
+
name: 'Layout',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
description: 'Preset mappings that assign plugin parameters to external MIDI controllers, making it easier to manipulate sounds in real-time or during live performances.',
|
|
24
|
+
value: PresetType.Mapping,
|
|
25
|
+
name: 'Mapping',
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
description: 'Sound presets containing saved parameter settings for synths or instruments, often focused on specific sounds or tonal qualities.',
|
|
29
|
+
value: PresetType.Patch,
|
|
30
|
+
name: 'Patch',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
description: 'Rhythmic and harmonic variations of MIDI data.',
|
|
34
|
+
value: PresetType.Pattern,
|
|
35
|
+
name: 'Pattern',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
description: 'Visual customizations that change the interface design, colors, or style of a plugin, providing a personalized or visually enhanced experience.',
|
|
39
|
+
value: PresetType.Theme,
|
|
40
|
+
name: 'Theme',
|
|
11
41
|
},
|
|
12
42
|
];
|
|
@@ -5,7 +5,10 @@ export var ProjectFormat;
|
|
|
5
5
|
ProjectFormat["Cubase"] = "cpr";
|
|
6
6
|
ProjectFormat["DAWproject"] = "dawproject";
|
|
7
7
|
ProjectFormat["FLStudio"] = "flp";
|
|
8
|
+
ProjectFormat["Garageband"] = "band";
|
|
9
|
+
ProjectFormat["Lmms"] = "lmms";
|
|
8
10
|
ProjectFormat["Logic"] = "logic";
|
|
11
|
+
ProjectFormat["Musescore"] = "mscz";
|
|
9
12
|
ProjectFormat["ProTools"] = "ptx";
|
|
10
13
|
ProjectFormat["Reaper"] = "rpp";
|
|
11
14
|
ProjectFormat["Sonar"] = "cwp";
|
|
@@ -14,7 +17,7 @@ export const projectFormats = [
|
|
|
14
17
|
{
|
|
15
18
|
description: 'Used to store all information about a Live set.',
|
|
16
19
|
value: ProjectFormat.AbletonLive,
|
|
17
|
-
name: 'Ableton Live
|
|
20
|
+
name: 'Ableton Live Project',
|
|
18
21
|
},
|
|
19
22
|
{
|
|
20
23
|
description: 'Containing all Bitwig project-related information.',
|
|
@@ -29,18 +32,33 @@ export const projectFormats = [
|
|
|
29
32
|
{
|
|
30
33
|
description: 'Open standard for storing various audio project settings.',
|
|
31
34
|
value: ProjectFormat.DAWproject,
|
|
32
|
-
name: '
|
|
35
|
+
name: 'DAWproject Project',
|
|
33
36
|
},
|
|
34
37
|
{
|
|
35
38
|
description: 'Used for saving FL Studio compositions and arrangements.',
|
|
36
39
|
value: ProjectFormat.FLStudio,
|
|
37
40
|
name: 'FL Studio Project',
|
|
38
41
|
},
|
|
42
|
+
{
|
|
43
|
+
description: 'A package containing audio files and Garageband timeline and settings.',
|
|
44
|
+
value: ProjectFormat.Garageband,
|
|
45
|
+
name: 'Garageband Project',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
description: 'Music project for open-source, cross-platform software.',
|
|
49
|
+
value: ProjectFormat.Lmms,
|
|
50
|
+
name: 'LMMS Project',
|
|
51
|
+
},
|
|
39
52
|
{
|
|
40
53
|
description: "Containing all Apple's Logic Pro audio, MIDI, and arrangement data.",
|
|
41
54
|
value: ProjectFormat.Logic,
|
|
42
55
|
name: 'Logic Pro Project',
|
|
43
56
|
},
|
|
57
|
+
{
|
|
58
|
+
description: 'Compressed Musescore project along with metadata and image preview.',
|
|
59
|
+
value: ProjectFormat.Musescore,
|
|
60
|
+
name: 'Musescore Project',
|
|
61
|
+
},
|
|
44
62
|
{
|
|
45
63
|
description: 'Used for Avid Pro Tools audio recording and production.',
|
|
46
64
|
value: ProjectFormat.ProTools,
|