Created
March 22, 2020 23:22
-
-
Save ethanpil/e5a82ea5ce92cc4ba860582193a4d570 to your computer and use it in GitHub Desktop.
ffmpeg windows batch convert all mp3 to mp4
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
| for /f "tokens=1 delims=." %a in ('dir /B *.mp3') do ffmpeg -i "%a.mp3" -q:a 4 "%a.ogg" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment