Rotate from landscape to portrait

R

Rehan

dmorgan817 said:
How do I in WMM rotate the view of a clip from landscape to portrait?


Well if you have Windows Movie Maker version 2.x then you should be able to
apply the "Rotate" effects on the clip.

Sometimes the default rotate effects dont preserve the aspect ratio, in
which case you can resort to the following custom rotate effects I made
earlier:


Instructions:
Copy paste the xml code into notepad and Save As "rotate.xml" in the folder
C:\Program Files\Movie Maker\Shared\AddOnTFX.
Create the AddOnTFX folder if necessary.
Confirm the file has .xml extension by turning off the "hide extensions of
known file types" from Explorer > Tools > Folder options > View.
Restart WMM. Locate the new effects "Rotate Left" etc in the Effects section



<TransitionsAndEffects Version="1.0" >
<Effects>
<EffectDLL guid="{B4DC8DD9-2CC1-4081-9B2B-20D7030234EF}">
<Effect name="Rotate Right" iconid="24" >
<Param name="InternalName" value="Simple3D" />
<Param name="RotateA" value="right" />
<Param name="Progress" value="0.25" />
</Effect>
<Effect name="Rotate Left" iconid="23" >
<Param name="InternalName" value="Simple3D" />
<Param name="RotateA" value="left" />
<Param name="Progress" value="0.25" />
</Effect>
<Effect name="Rotate Right Fit" iconid="24" >
<Param name="InternalName" value="Simple3D" />
<Param name="RotateA" value="right" />
<Param name="ScaleA" value="0.75" />
<Param name="InitialScaleA" value="0.75" />
<Param name="Progress" value="0.25" />
</Effect>
<Effect name="Rotate Left Fit" iconid="23" >
<Param name="InternalName" value="Simple3D" />
<Param name="RotateA" value="left" />
<Param name="ScaleA" value="0.75" />
<Param name="InitialScaleA" value="0.75" />
<Param name="Progress" value="0.25" />
</Effect>
</EffectDLL>
</Effects>
</TransitionsAndEffects>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top