Skip to content

Instantly share code, notes, and snippets.

@mseeks
Created February 13, 2024 02:08
Show Gist options
  • Save mseeks/840d78f901bdd22b2a585b661ae67dbb to your computer and use it in GitHub Desktop.
Save mseeks/840d78f901bdd22b2a585b661ae67dbb to your computer and use it in GitHub Desktop.
Shell command snippet for converting MP3 files to M4A using ffmpeg, optimizing for compatibility with iOS devices.
# Command to convert MP3 to M4A for broad compatibility, especially with iOS devices
ffmpeg -i input.mp3 -acodec aac output.m4a
# Remember to replace `input.mp3` and `output.m4a` with your actual file names.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment