7

I'd like to reduce the file size of some mp3 audios with sox. I think I can reduce stereo to only 1 channel (i.e. mono), reduce the sample rate and reduce the bit-depth. I find it seems sox can do none of that. Is this true or did I have done it correctly?

$ sox -r 8000 -c 1 2008-12-28-2.MP3 foo.mp3
sox WARN formats: can't set sample rate 8000; using 44100
sox WARN formats: can't set 1 channels; using 2
RNA
  • 146,987
  • 15
  • 52
  • 70

1 Answers1

7

The arguments should go before the output file:

sox 2008-12-28-2.MP3 -r 8000 -c 1 foo.mp3

They can also be supplied as effects:

sox 2008-12-28-2.MP3 foo.mp3 remix 1 rate 8000
Thor
  • 45,082
  • 11
  • 119
  • 130