Quantcast
Channel: BSDnexus
Viewing all articles
Browse latest Browse all 17

Batch convert audio files

$
0
0

Simple one-liner to batch convert one type of audio file to another using ffmpeg. The example converts .ogg to .mp3 files:

for x in *.ogg; do ffmpeg -i "$x" "`basename "$x" .ogg`.mp3"; done

Viewing all articles
Browse latest Browse all 17

Trending Articles