Skip to content

Instantly share code, notes, and snippets.

@omundy
Last active August 5, 2025 18:03
Show Gist options
  • Save omundy/855f33e7988df361c455120eb8428a8a to your computer and use it in GitHub Desktop.
Save omundy/855f33e7988df361c455120eb8428a8a to your computer and use it in GitHub Desktop.
convert M4A to MP3
# 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