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.txt · Last modified: 2022/01/03 16:03 by 127.0.0.1
Back to top
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0