Prine’s Blog

M4a nach mp3 umwandeln

Posted by: fedoraswiss on: Oktober 18, 2007

Ich habe heute folgendes Script im Fedoraforum gefunden:

#!/bin/bash
#
# Dump m4a to wav
# Dump m4a to mp3
for i in *.m4a
do
faad "$i"
x=`echo "$i"|sed -e 's/.m4a/.wav/'`
y=`echo "$i"|sed -e 's/.m4a/.mp3/'`
lame -h -b 192 "$x" "$y"
rm "$x"
done

Einen Kommentar schreiben