How to rotate a mov file ?

  • Thread starter Thread starter geothermal
  • Start date Start date
G

geothermal

Hi All,

I am looking for any freeware that can rotate a mov file ?

My Olympus digital camera can take mov movies, but I turned
the camera on its side to get the shot I wanted. Even
crippleware would be ok as long as I can rotate the file.

I am using XP Home.

Thanks 4 any info,

geothermal
 
geothermal said:
Hi All,

I am looking for any freeware that can rotate a mov file ?

My Olympus digital camera can take mov movies, but I turned
the camera on its side to get the shot I wanted. Even
crippleware would be ok as long as I can rotate the file.

I am using XP Home.

Thanks 4 any info,

geothermal

Have you checked the software that Olympus provides with the camera? I
have a Canon, and I can rotate a movie from within their packaged software.
 
I am looking for any freeware that can rotate a mov file ?

Virtualdub can but it doesn't open mov files. You could first convert it to
avi using mov2avi, TMPGenc or Rad video tools and load the avi into
Virtualdub.
 
very simple
download this
fever.link.free.fr/SUPER.html, then write the following avisynth
script:

DirectShowSource("PutHereYourCkip.mov", fps=25)
ConvertToYV12()
TurnLeft() #rotates the clip 90 degrees counterclock wise
TurnRight() #rotates the clip 90 degrees clock wise.
Turn180() #rotates the clip 180 degrees.

use the Turn function that corresponds to your needs.

save the script as myscript.avs, drop in SUPER & encode, that's all!
 
Back
Top