4
0
I need to change the playback speed of a video, but can't use mencoder to do it. Changing the speed that a video plays at seems like the sort've thing that any video encoding software should be able to do, but mencoder is the only one that I've seen with a built-in option. Mencoder is also the only one that I've seen that does it fast. There are examples on the web of changing the speed with ffmpeg by converting to raw video frames and then putting them back together, but mencoder is clearly doing something faster because speed changes happen in nearly the time it takes to simply copy the file.
Does anyone know how mencoder is changing the playback speed with the -speed option?
Using ffmpeg, the `-r' option sets the frame rate, but it's not doing the same thing as mencoder because it doesn't work as well. Playback software ignores the rate setting if it's out of some range, or not the right container format, &c. Mencoder is doing more than just changing the frame rate. – blahdiblah – 2011-10-07T21:27:47.233
Thats true, if the frame rate was way to high, no payer is going to play it like that. So it would have to drop frames out. for Slow it could not processes it quick, unless it was frame doubling, because frame interpolation requires processing. – Psycogeek – 2011-10-08T06:49:49.820