Skip to content

Instantly share code, notes, and snippets.

@Ink-33
Created May 2, 2022 03:12
Show Gist options
  • Save Ink-33/fa7b0d899666d69c22831c06841446f6 to your computer and use it in GitHub Desktop.
Save Ink-33/fa7b0d899666d69c22831c06841446f6 to your computer and use it in GitHub Desktop.
Stripe metadata info and album cover from audio using ffmpeg.
ffmpeg.exe -i in.flac -map 0:0 -map_metadata -1 -codec:a copy out.flac

-map 0:0 means only keep the stream 0 of input file 0, which is using to strip album cover.

-map_metadata -1 means to strip all metadata info.

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