Last active
August 5, 2025 18:03
-
-
Save omundy/855f33e7988df361c455120eb8428a8a to your computer and use it in GitHub Desktop.
convert M4A 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
# convert M4A to MP3 - using variable bit rate https://superuser.com/a/704535/132422 | |
ffmpeg -i input.m4a -c:v copy -c:a libmp3lame -q:a 4 output.mp3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment