Created
April 8, 2019 22:08
-
-
Save rendfall/ab45c3bf8b9d51f6c55a867deed5df17 to your computer and use it in GitHub Desktop.
Batch script to convert mp4 files to mp3
This file contains hidden or 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
echo off | |
for %%a in ("./source/*.mp4") do ffmpeg -i "%%a" -b:a 320K -vn "./output/%%a.mp3" | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Linux bash version:
convert-mp4-to-mp3.sh