Created
March 18, 2017 18:10
-
-
Save famousgarkin/4d8f53e0c7c829ac2a5bb115a5912943 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."
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
Hi @famousgrakin. If I would like to change the frame rate as well, is it possible to add
-r <frame_rate>
>?From what I understand, it wouldn't work to have
-vcodec copy
when changing frame rate, but at the same time I want to fix the "packed bit stream issue (packed B-frames)" but-bsf:v mpeg4_unpack_bframes
wouldn't work ifvcodec
is notcopy
( as mentioned by the warning, "... without encoding but stream copy"Do you have any suggestion how to fix this while changing the frame rate? The reason I want to change the frame rate is to make my video constant frame rate, not variable frame rate.