-
Notifications
You must be signed in to change notification settings - Fork 0
Sharing your centralized location for audio plugins #2
Description
There seems to be a few centralized audio plugins locations including:
https://central.owlplug.com/store
https://getdunne.net/GyL/owl.php
https://getdunne.net/Krakli/owl.php
https://central.owlplug.com/mirrors/amvst/store
https://central.owlplug.com/mirrors/vst4free/store
https://www.kvraudio.com/plugins/vst-plugins/vst3-plugins/free/newest
https://github.com/VolantisDev/vst-guide-api/tree/master/plugins
https://github.com/joereynolds/reap-get/blob/master/src/data/packages.json
I have also made my own here:
https://github.com/kmturley/audio-project-manager/blob/master/lib/data/registry.json
I see you've started to standardize the json data format, and find a way to host plugins so they can be downloaded directly (without websites). I was wondering if others can connect to your centralized location too?
For example my tool is trying to replicate npm install so that a music project contains a project.json with all the plugins:
https://github.com/kmturley/audio-project-manager
Rather than me creating my own repo of plugins, should we start sharing? I have structured my json in a way that you can look up a plugin by id quickly:
"1208-reviber-by-1208-audio": {
"author": "1208 Audio",
"description": "A Musical Two Knob Audio Enhancer",
"homepage": "https://1208audio.com/downloads/reviber",
"id": "1208-reviber-by-1208-audio",
"media": [
"https://static.kvraudio.com/i/b/reviber.1589061770.png"
],
"name": "1208 Reviber",
"sources": {
"darwin": "https://1208audio.com/downloads/reviber",
"win32": "https://1208audio.com/downloads/reviber",
"win64": "https://1208audio.com/downloads/reviber"
},
"tags": [
"Exciter / Enhancer",
"Equalizer",
"Mixing and Mastering",
"Tone Shaper"
],
"version": "1.4.1"
}