An overview of this is described in the manual http://manual.audacityteam.org/man/Expo ... al_Program
Here's the examples of Command Line export options from the Audacity manual:
Code: Select all
command - "%f"LAME Examples:
Code: Select all
lame -v -b 112 -c -p - "%f"Here's some examples more examples (not in the manual):
High quality mono MP3 with LAME:
Code: Select all
lame -V 0 -a - "%f"High compression (small file size) mono MP3 with LAME:
Code: Select all
lame -V 9 -a - "%f"Code: Select all
sox -t wav - -t ogg "%f"Code: Select all
sox -t wav - -t wav "%f" echo 0.8 0.3 30 0.4 reverb 60 10 15 100 10 10Feel free to add your own recipes.