cmcginty / flacsync

Recursively mirror a directory tree of FLAC audio files to AAC or OGG.
http://packages.python.org/flacsync/
Other
30 stars 8 forks source link

Resample if rate > 48 kHz #10

Open ramicio opened 9 years ago

ramicio commented 9 years ago

Could this be implemented? I have a lot of high-rez stuff in my library. I would resample 88.2 kHz and 176.4 kHz stuff to 44.1 kHz, and 96 kHz and 192 kHz stuff to 48 kHz. Yeah, lame makes stuff that is > 48 kHz into 48 kHz, but a lot of people would rather do even division.

ramicio commented 9 years ago

A simple insertion of something like

'| sox -t wav - -r 44100 -t wav - |' would work.