This is an old revision of the document!


Convert mp4 to mp3 linux

convert.sh
#!/bin/sh
 
SAVEIFS=$IFS
IFS=$(echo -en "\n\b")
for f in *
do
  echo "$f"
  ffmpeg -i "$f" -vn \
       -acodec libmp3lame -ac 2 -ab 160k -ar 48000 \
      "${f%.mp4}.mp3"
done
IFS=$SAVEIFS
howto/convert_mp4_to_mp3_linux.1478435079.txt.gz · Last modified: (external edit)
Back to top
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0