Standalone processing executable

Hello,

I am looking for a way to create a simple exe file which processes an input wav file and generate an output wav. This will be used as a software in a web server, so no GUI. Is this something I can do with JUICE? Can a VST file executed by a script like an exe file?

Thank you.

You don’t even have to use a VST if you’re writing all the DSP code yourself. JUCE is totally capable of reading a WAV file, processing it per-sample, and writing it out via the AudioFormat classes.

Thanks jonathonracz

Seems from the tutorials that it exports everything to my IDE. So I can indeed generate my exe file from it as I used to do with libsndfile some time ago.

and since you don’t need a GUI, just use the Projucer to set up a CommandLine application