Skip to content

Instantly share code, notes, and snippets.

@meduzen
Created January 4, 2020 23:20
Show Gist options
  • Save meduzen/77910271989178e3eda1116c17141cc1 to your computer and use it in GitHub Desktop.
Save meduzen/77910271989178e3eda1116c17141cc1 to your computer and use it in GitHub Desktop.
Notes about FFMPEG

Audio

ffmpeg -i smb-bump.wav -c:a flac -compression_level 8 -map_metadata -1 smb-bump.flac
  • -c:a flac for FLAC.
  • -compression_level 8: 0 is low compression (faster to decode), 12 is highest, but following this thread, you should never go above 8.
  • -map metadata -1 removes the metadata.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment