|
From: robs <aq...@ya...> - 2009-04-11 19:19:08
|
--- On Sat, 11/4/09, Chris Bagwell <ch...@cn...> wrote: > task. But I do like short options for common features. > > How would you want user to, for example, change a 8-bit > unsigned .au file to a 16-bit signed WAV file? Hmmm... tricky; I don't think au supports unsigned integer :) But ignoring that, I think it would be sox infile.au -e s -b 16 output.wav in its shortest form, or sox infile.au --encoding signed-integer --bits 16 output.wav in its clearest form. Any good...? |