change avi playback speed and sound (maybe using ffmpeg)

2

I have a video file of 5 FPS / 8000Hz that I want to speed up 6 times. I want the pitch and playback to increase - can I do this by simply adjusting the file header?

I can't seem to figure out the right parameters to do this with ffmpeg since it actually creates new frames in order to stay at the same speed. I read some similar topics on this website, but can't seem to find anything simple to do with both sound and image.

Is there a way to do this with a command-line tool or can someone explain how to alter this in code?

Sheep

Posted 2011-04-04T02:06:19.830

Reputation: 21

Answers

1

mencoder has an option to change the speed. A similar question was answered here.

The following command was suggested:

mencoder file.avi -speed 20 -vf scale=720:368,hqdn3d=3:2:3:2,expand=720:480 -ovc xvid -oac pcm -xvidencopts fixed_quant=2 -o out.avi )

Mar

Posted 2011-04-04T02:06:19.830

Reputation: 11