I have a series of screenshots from a demo that I want to put in a video. I am using ffmpeg for this purpose. The command is ffmpeg -f image2 -i screenshot_%5d.png -vcodec mpeg4 demo.avi
. However, the video length is shorter than what I want, and it moves very fast. How do I specify how many images per second I want? I tried the -r
argument but that did not work.
相关问题
- Improving accuracy of Google Cloud Speech API
- How to take screenshots of running iPhone from bac
- How to scale down the size and quality of an Buffe
- MP4 codec support in Chromium
- Streaming video (C# using FFmpeg AutoGen) sends mu
相关文章
- Handling ffmpeg library interface change when upgr
- How to use a framework build of Python with Anacon
- c++ mp3 library [closed]
- Passing a native fd int to FFMPEG from openable UR
- FFmpeg - What does non monotonically increasing dt
- ffmpeg run from shell runs properly, but does not
- Error while executing adb command programmatically
- Issues in executing FFmpeg command in Java code in
You can change video speed by adjusting the “presentation time stamp” (PTS). In your case:
You'll get video, which plays 5 times slower, than normal video.
If you want to make it 5 times faster:
You need to specify the capture rate