Hi everyone, I’m new to scripting and I want to run a perl script in audacity for some arg thing but I don’t want to go through the hassle of programming or install phyton and waste more time than i have to.(because i already did waste several hours of my life finding something to encrypt audio with) I just want to run the script and invert the audio, do I have to install a plugin or something? Or do I have to convert it to this “nyquist” thing. Here is the perl scrip, any help would be appreciated:
Since you appear to be using SoX, you could invert the audio with: sox -v -1 input.wav output.wav
The -v option is “volume” on a scale of 0 = silence, 1 = original volume, -1 (negative one) = inverted.
@steve actually, i don’t need your help anymore, because I found one of your scripts that does the job from this post: Spectral Invert (oh and it’s broken in the latest version of Audacity for some reason and I had to go and install a previous version of Audacity) I was just being stubborn not seeing your script and the nyquist prompt. Thanks for your help, but now I want to deinvert the audio now just to make sure it can actually be retrievable. Could you make one please?