Is there a way to specify the -re option (read input at native frame rate) that usually comes before the input option?
@creimers Have seen authors answer somewhere in issues earlier, it works for me:
cmd = ffmpeg.input(input_name, re=None).output(final_name, c='copy')
print(cmd.compile())
Relates to #218 (marked as enhancement to update docs and support =True as well).
Most helpful comment
@creimers Have seen authors answer somewhere in issues earlier, it works for me:
cmd = ffmpeg.input(input_name, re=None).output(final_name, c='copy')print(cmd.compile())