-
-
Notifications
You must be signed in to change notification settings - Fork 753
ffmpeg command from User Guide gives an error #799
Copy link
Copy link
Closed
Labels
codecode-related, independently on the underlying physics simulation.code-related, independently on the underlying physics simulation.good first issueunitaryhackThis issue is selected for participation in UnitaryHACK.This issue is selected for participation in UnitaryHACK.unitaryhack-acceptedThis bounty for this UnitaryHack issue should be paid.This bounty for this UnitaryHack issue should be paid.
Metadata
Metadata
Assignees
Labels
codecode-related, independently on the underlying physics simulation.code-related, independently on the underlying physics simulation.good first issueunitaryhackThis issue is selected for participation in UnitaryHACK.This issue is selected for participation in UnitaryHACK.unitaryhack-acceptedThis bounty for this UnitaryHack issue should be paid.This bounty for this UnitaryHack issue should be paid.
When I run
ffmpeg -r 20 -b 1800 -i bloch_%01d.png bloch.mp4from the User Guide's Generating Images for Animation
section I get the following error:
What works for me instead is this:
ffmpeg -r 20 -i bloch_%01d.png -pix_fmt yuv420p bloch.mp4Note: personally I print files as zeropadded 4-digit number, so I have %04d.png instead of bloch_%01d.png.