Created
July 24, 2014 08:24
-
-
Save ThomasLeister/0d5e0b0423af5664b375 to your computer and use it in GitHub Desktop.
Converts MP4 video files to MP3 audio files via ffmpeg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
for f in *.mp4; | |
do | |
echo "Processing $f" | |
ffmpeg -i "$f" "output/${f%}.mp3" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment