Mp4 zu Mp3
Erstellt aus einem mp4 Video eine mp3 Datei.
#!/bin/bash FILE="$1" mplayer "${FILE}" -ao pcm:file=/tmp/temp.wav -vo null -vc null -benchmark lame -V 2 --vbr-new /tmp/temp.wav "${FILE/.mp4/.mp3}" rm -f /tmp/temp.wav
Erstellt aus einem mp4 Video eine mp3 Datei.
#!/bin/bash FILE="$1" mplayer "${FILE}" -ao pcm:file=/tmp/temp.wav -vo null -vc null -benchmark lame -V 2 --vbr-new /tmp/temp.wav "${FILE/.mp4/.mp3}" rm -f /tmp/temp.wav