Skip to content

Instantly share code, notes, and snippets.

@chris-kobrzak
Created February 28, 2021 22:22
Show Gist options
  • Save chris-kobrzak/17784faeac5734f17b71a974d5f610e6 to your computer and use it in GitHub Desktop.
Save chris-kobrzak/17784faeac5734f17b71a974d5f610e6 to your computer and use it in GitHub Desktop.
Convert .m4a to .ogg files
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