Skip to content

Instantly share code, notes, and snippets.

View FractalGeodes's full-sized avatar
💭
wawa

Fractal Geodes FractalGeodes

💭
wawa
  • Australia
  • 22:35 (UTC +10:00)
View GitHub Profile
@Ink-33
Ink-33 / clearmedia.md
Created May 2, 2022 03:12
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.