Ffmpeg-python: force framerate

Created on 16 Oct 2018  Â·  1Comment  Â·  Source: kkroening/ffmpeg-python

Hey Guys!
Follwing my last issue was wondering if there was a binding for FFMPEG's -r command. Where you force a framerate on the output command. Im ingesting EXR's at 24 but its still defaulting to 25 even when i set framerate in the output call as bellow

stream = ffmpeg.output(stream,os.path.join(mov_path,fixed_mov_name),vcodec='prores_ks',profile='lt', framerate=24)

question

Most helpful comment

Instead of framerate use r.

stream = ffmpeg.output(…, r=24)

>All comments

Instead of framerate use r.

stream = ffmpeg.output(…, r=24)
Was this page helpful?
0 / 5 - 0 ratings

Related issues

ghost picture ghost  Â·  3Comments

kishaningithub picture kishaningithub  Â·  5Comments

DinRigtigeFar picture DinRigtigeFar  Â·  5Comments

oveddan picture oveddan  Â·  3Comments

Woolwit picture Woolwit  Â·  4Comments