Skip to content

Instantly share code, notes, and snippets.

@Dalboz
Created November 6, 2022 00:00
Show Gist options
  • Save Dalboz/081a52e432f1f5cc6782df42e22197a2 to your computer and use it in GitHub Desktop.
Save Dalboz/081a52e432f1f5cc6782df42e22197a2 to your computer and use it in GitHub Desktop.
Convert audio files with FFmpeg while retaining original metadata
# install ffmpeg for macOS
brew install ffmpeg
# invoke ffmpeg while stating that must copy the first stream of metadata
ffmpeg -i in.opus -map_metadata 0:s:a:0 out.mp3
# check the out file and verify the metadata
@Dalboz
Copy link
Author

Dalboz commented Nov 6, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment