Created
February 28, 2021 22:22
-
-
Save chris-kobrzak/17784faeac5734f17b71a974d5f610e6 to your computer and use it in GitHub Desktop.
Convert .m4a to .ogg files
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 m4aFile in *.m4a; \ | |
| do ffmpeg -i "$m4aFile" \ | |
| -ab 128k \ | |
| ogg/"${m4aFile%.m4a}.ogg"; \ | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment