Skip to content

Instantly share code, notes, and snippets.

@visualblind
Forked from famousgarkin/fix.sh
Created May 11, 2023 22:22
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 visualblind/835dbe4ad8fa5c8c1204ffe38bcc5541 to your computer and use it in GitHub Desktop.
Save visualblind/835dbe4ad8fa5c8c1204ffe38bcc5541 to your computer and use it in GitHub Desktop.
ffmpeg fix "Video uses a non-standard and wasteful way to store B-frames ('packed B-frames'). Consider using the mpeg4_unpack_bframes bitstream filter without encoding but stream copy to fix it."
ffmpeg -i "in.avi" -bsf:v mpeg4_unpack_bframes -vcodec copy "out.avi"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment