{"id":22164620,"url":"https://github.com/nokitakaze/vstaudioprocessor","last_synced_at":"2025-03-24T16:12:22.823Z","repository":{"id":140152045,"uuid":"259998045","full_name":"nokitakaze/VSTAudioProcessor","owner":"nokitakaze","description":"VST Host with unix-way availability to processing wav (RIFF) files with VST Plugin with some preset from fxb/fxp-files","archived":false,"fork":false,"pushed_at":"2023-09-11T19:37:54.000Z","size":792,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-29T21:34:09.410Z","etag":null,"topics":["audio","sound","vst","vst-plugin"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nokitakaze.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-04-29T17:41:47.000Z","updated_at":"2022-08-28T15:06:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"c2fee87d-78b8-45b8-8e4f-55cc35b63f58","html_url":"https://github.com/nokitakaze/VSTAudioProcessor","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nokitakaze%2FVSTAudioProcessor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nokitakaze%2FVSTAudioProcessor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nokitakaze%2FVSTAudioProcessor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nokitakaze%2FVSTAudioProcessor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nokitakaze","download_url":"https://codeload.github.com/nokitakaze/VSTAudioProcessor/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245304873,"owners_count":20593626,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["audio","sound","vst","vst-plugin"],"created_at":"2024-12-02T05:08:59.425Z","updated_at":"2025-03-24T16:12:22.814Z","avatar_url":"https://github.com/nokitakaze.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VSTAudioProcessor\n\nVST Host with unix-way availability to processing wav (RIFF) files with VST Plugin with some preset from fxb/fxp-files.\n\n## Using\n\n### Save preset\n\nYou could skip this step if you're using different VST Hosts (i.e Wavosaur or Tone2 NanoHost) for creating presets.\n\n```bash\nVSTAudioProcessor.exe --vst-plugin \"C:\\Program Files\\Common Files\\VST2\\Random-VST-Plugin.dll\" --save-fxb --fxb \"C:\\temp\\preset.fxb\"\nVSTAudioProcessor.exe --vst-plugin \"C:\\Program Files\\Common Files\\VST2\\Random-VST-Plugin.dll\" --save-fxb --fxb \"C:\\temp\\preset.fxp\" --fxb-format fxp\nVSTAudioProcessor.exe --vst-plugin \"C:\\Program Files\\Common Files\\VST2\\Random-VST-Plugin.dll\" --save-fxb --fxb \"C:\\temp\\preset.fxb\" --fxb-as-params\nVSTAudioProcessor.exe --vst-plugin \"C:\\Program Files\\Common Files\\VST2\\Random-VST-Plugin.dll\" --save-fxb --fxb \"C:\\temp\\preset.fxp\" --fxb-as-params --fxb-format fxp\n```\n\nDefault saving type is opaque, because it saves all data from some big and complicated plugins like IL Minihost Modular. Use `--fxb-as-params` only if you plan to use your preset in any VST hosts, which don't support opaque type (i.e. Wavosaur).\n\n### Use your preset\n\nVSTAudioProcessor supports all 5 different types for preset file (Param preset, opaque preset, opaque bank, param bank + param preset, param bank + opaque preset). You could do preset in any VST Host you usually use and then load it here.\n\n```bash\nVSTAudioProcessor.exe --vst-plugin \"C:\\Program Files\\Common Files\\VST2\\Random-VST-Plugin.dll\" --fxb \"C:\\temp\\preset.fxp\" --input \"C:\\temp\\input.wav\" --output \"C:\\temp\\fxb\\output.wav\"\n```\n\nIf your preset contain different Plugin Version from your current VST Plugin, use `--ignore-plugin-version`.\n\n```bash\nVSTAudioProcessor.exe --vst-plugin \"C:\\Program Files\\Common Files\\VST2\\Random-VST-Plugin.dll\" --fxb \"C:\\temp\\preset.fxp\" --input \"C:\\temp\\input.wav\" --output \"C:\\temp\\fxb\\output.wav\" --ignore-plugin-version\n```\n\nIf you need to work other media types besides RIFF you could use `ffmpeg` (https://www.ffmpeg.org/download.html#build-windows).\n\nFor example:\n```bash\nffmpeg -i some-media-file.raw -sn -vn -c:a pcm_s16le temporary.wav\nVSTAudioProcessor.exe ... --input temporary.wav --output temporary.out.wav\nffmpeg -i temporary.out.wav -c:a aac -q:a 5 output.aac\n```\n\n## TODO\nSplit this package to separate VST Host and FXB/FXP file processor, and then publish it as .Net Core Nuget package.\n\nThis application WILL NEVER support any other media type except RIFF files, because of their simple not complicated nature.\n\n## License\n\n![](https://cdn.discordapp.com/attachments/568223142724763652/705420220398960650/Home_VSTLogoAlpha92x54.png)\n\nVST is a trademark of Steinberg Media Technologies GmbH.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnokitakaze%2Fvstaudioprocessor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnokitakaze%2Fvstaudioprocessor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnokitakaze%2Fvstaudioprocessor/lists"}