Error Generating Audio Plugin: Could Not Save Plugin
조회 수: 2 (최근 30일)
이전 댓글 표시
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
Jimmy Lapierre
2023년 4월 27일
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
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Audio Plugin Creation and Hosting에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!