Skip to content

Instantly share code, notes, and snippets.

@icywind
Created January 8, 2024 22:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icywind/f8a0047abb57fd0764152e54c12c4789 to your computer and use it in GitHub Desktop.
Save icywind/f8a0047abb57fd0764152e54c12c4789 to your computer and use it in GitHub Desktop.
Shell script to convert mp4 files to mp3 using ffmpeg
#!/bin/bash
for filename in *.mp4; do
mp3="${filename%.mp4}.mp3"
echo "$filename ===> $mp3"
ffmpeg -i $filename -vn $mp3
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment