landscape to portrait?

I have some avi files that are landscape at the moment (recored by digital camera)

I would like to convert them to portrait so that the movies are the right way up!

I am thinking that there is probably an easy way to do this, but how exactly escapes me.

Any help would be much appreciated... :)
 
From the sounds of it you just want to rotate it? Possibly also resize?

AVISynth can quickly and easily do that; to rotate just use TurnLeft() or TurnRight().

Keep in mind though doing so would require re-encoding, it may also be possible to just rotate the video on playback.
 
that's right, I just want to rotate the picture, no resize necessary.

I will check out AVIsynth and report back

Cheers,

Kie
 
Am I going to have to start quoting myself again??
to rotate just use TurnLeft() or TurnRight()
Also AVISynth comes with some very nice docs, I would suggest that you have a look at them as well as perhaps the website.
 
You would also need AVISource("whatever.avi")

then you could have AVISource("whatever.avi").TurnRight()

or

video = AVISource("whatever.avi")
video = TurnLeft(video)
return video
 
Top