Skip to content

Instantly share code, notes, and snippets.

@BuZZ-dEE
Created February 23, 2012 00:04
Show Gist options
  • Select an option

  • Save BuZZ-dEE/1888540 to your computer and use it in GitHub Desktop.

Select an option

Save BuZZ-dEE/1888540 to your computer and use it in GitHub Desktop.
Eine Liste mit Befehlen zur Konvertierung von Audiomaterial in andere Formate
Sox:
sox -S in.flac -r 44100 -C 8 out.flac
sox -S in.flac -r 44100 -C 8 -b 16 out.flac
sox -S in.flac -C 5 out.ogg VBR ~160kbps
sox -S in.flac -C 6 out.ogg VBR ~192kbps
sox -S in.flac -C -4 out.mp3 VBR ~165kbps
sox -S in.flac -C -3 out.mp3 VBR ~175kbps
sox -S in.flac -C -2 out.mp3 VBR ~190kbps
sox -S in.flac -C -2.0 out.mp3 VBR ~190kbps
sox -S in.flac -C -1 out.mp3 VBR ~225kbps
sox -S in.flac -C -0 out.mp3 VBR ~245kbps
sox -S in.flac -C -0.2 out.mp3 VBR ~245kbps
sox -S in.flac -C 192 out.mp3 CBR ~192kbps
for i in *.flac; do sox -S "$i" -C -3 -o "`basename "$i" .flac`.mp3"; done;
for i in *.flac; do sox -S "$i" -C 4 -o "`basename "$i" .flac`.ogg"; done;
FFmpeg:
Flac:
flac -w -V --replay-gain -8 in.wav
flac -w -V --replay-gain -8 --keep-foreign-metadata in.wav
flac -w -V --replay-gain -8 --delete-input-file *
Wavpack:
wavpack -hh in.wav
wavpack -b16.0 -c -hh in.wav VBR ~980kbps
wavpack -b16.0 -c -hh -j1 in.wav VBR ~980kbps
wavpack -b24.0 -c -hh -j1 in.wav VBR ~216kbps
wavpack -b320 -c -hh -j1 in.wav VBR ~345kbps
Oggenc:
oggenc -q 10 in.flac VBR ~500kbps
oggenc -q 9 in.wav VBR ~320kbps
oggenc -q 7 in.wav VBR ~224kbps
oggenc -b 225 in.wav ABR ~225kbps
oggenc -b 225 -m 32 -M 320 in.wav ABR ~225kbps
Lame:
lame -h -b 320 CBR 320kbps
lame -V 0 in.wav VBR ~245kbps
lame -V 1 in.wav VBR ~225kbps
lame --abr 225 in.wav ABR ~225kbps
lame --abr 225 -q 0 in.wav ABR ~225kbps
lame --abr 225 -b 32 -B 320 in.wav ABR ~225kbps
lame --abr 225 -q 0 -b 32 -B 320 in.wav ABR ~225kbps
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment