HI Can I flip or rotate a clip.
Its easy to do within movie maker. Import your clip into collection and
then bring it into Storyboard/Timeline. Now go to Effects section and
locate Rotate 90 and Rotate 180.
However these rotate effects do not keep the aspect ration preserved
during rotation. To overcome this limitation I have made a few custom
effects that achieve the same thing but while keeping the aspect ratio
preserved.
To use my custom effects copy paste the xml code below into notepad and
save the file as rotate.xml in folder C:\Program Files\Movie Maker
\Shared\AddOnTFX. If the AddOnTFX folder does not exist at that
location, create it first. Afterwards restart WMM and go to the Effects
section to see the new effects: "Rotate Left Fit" and "Rotate Right
Fit" etc. and apply them to the clip.
<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>
Hope it works for you.