Skip to content

Instantly share code, notes, and snippets.

@Wikinaut
Created December 17, 2022 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Wikinaut/fa050815bc130e702e192fece7599485 to your computer and use it in GitHub Desktop.
Save Wikinaut/fa050815bc130e702e192fece7599485 to your computer and use it in GitHub Desktop.
strip metadata
#!/usr/bin/bash
# https://stackoverflow.com/questions/38964861/how-to-remove-all-metadata-using-ffmpeg
ffmpeg -i "$1" -c copy -fflags +bitexact -flags:v +bitexact -flags:a +bitexact -write_xing 0 -id3v2_version 0 "${1%.*}.id3stripped.${1#*.}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment