Error Generating Audio Plugin: Could Not Save Plugin
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm running Matlab 2022b on MacOS 13.3.1. I was able to validate and test bench the example audio plugin myEchoPlugin described here, but whenever I try to generate a VST, I get the following error:
% Error using generateAudioPlugin
% Could not save plugin to
% '/Users/[my username]/Documents/MATLAB/DSP/FinalProject/myEchoPlugin.vst': The location
% '/private/var/folders/xl/s9qhk75168q919lvdzfzhfvh0000gn/T/tp0816faa2_06ac_460c_8946_497f7801e13d/Builds/MacOSX/build/Release/myEchoPlugin.vst'
% was not found.
% The location may be read-only or locked by a DAW process.
% Error in generateAudioPlugin
I tracked down /private/var/folders/xl/s9qhk75168q919lvdzfzhfvh0000gn/T and tried adding read/write permissions, but I couldn't find the tp0816faa2_06ac_460c_8946_497f7801e13d directory. My user already has read/write permissions in the current folder /FinalProject, and I don't know what else to do. The plugin works fine in the test bench. Why am I getting this error? Which location is causing the problem, the current folder or the one in /private? If the location is locked by a DAW process, how do I unlock it?
5 Kommentare
Jimmy Lapierre
am 27 Apr. 2023
It would be in your user folder (~/Library, not /Library).
In MATLAB, try this after the failure (with the name of your plugin instead of Echo) :
>> copyfile ~/Library/Audio/Plug-Ins/VST/Echo.vst Echo.vst
Antworten (0)
Siehe auch
Kategorien
Mehr zu Audio Plugin Creation and Hosting finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!