使用 ffmpeg-python 设置转换输出文件的帧率
Set the framerate of converted output file using ffmpeg-python
我有以下行可以使用 ffmpeg-python
将 .mp4
文件转换为 .gif
文件:
ffmpeg.input('test.mp4').trim(start=0, duration=3).output('output.gif').run()
效果很好,但我想降低帧率。 At this link,我找不到执行此操作的方法。有人知道怎么做吗?
ffmpeg
.input('test.mp4')
.trim(start=0, duration=3)
.filter('fps', fps=25, round='up')
.output('output.mp4')
.run()
我有以下行可以使用 ffmpeg-python
将 .mp4
文件转换为 .gif
文件:
ffmpeg.input('test.mp4').trim(start=0, duration=3).output('output.gif').run()
效果很好,但我想降低帧率。 At this link,我找不到执行此操作的方法。有人知道怎么做吗?
ffmpeg
.input('test.mp4')
.trim(start=0, duration=3)
.filter('fps', fps=25, round='up')
.output('output.mp4')
.run()