Log in

View Full Version : AVS Script to rotate and speed up?


rack04
23rd January 2014, 20:33
I have a raw video file that I would like to rotate 90 degrees clockwise in the z direction and speed up 2x. Can anyone provide a script that will perform these functions? Thanks.

raffriff42
23rd January 2014, 20:52
I have a raw video file that I would like to rotate 90 degrees clockwise in the z direction and speed up 2x...RawSource("path\to\your\raw", ...)
TurnRight
AssumeFPS(Framerate*2).ChangeFPS(Framerate) RawSource: http://forum.doom9.org/showthread.php?t=103509

wonkey_monkey
24th January 2014, 13:49
AssumeFPS(Framerate*2).ChangeFPS(Framerate)

Note that this will remove every other frame and keep the original frame rate. If you want to keep all the frames and double the frame rate, remove the ChangeFPS.