Rotate

  • Thread starter Thread starter J.A.
  • Start date Start date
Thanks but it didn't work well

Which good/cheap software can do this without damaging the size?

J.A.
 
Hello,

There is an excelent program called MovieXone from AIST. You get it free of
cover disks...usually it is put out every couple of months on the mad PC
UTILITIES. It will do all that you want and a little bit more in this
area.....I use the paid for big brother called MovieDV...it was the best US $69
I have ever spent on computer software....you may well want to do the same once
you see how good the free version is.....

--
Best Wishes.....John Kelly
www.the-kellys.org
www.the-kellys.co.uk
Check out free video hosting at www.the-kellys.org
----
\|||/
(oo)
----------ooO-(_)-Ooo-------------
All material gained from other sources is duly acknowledged. No Value is
obtained by publishing in any format other peoples work
 
P.S. See the movie Doodles on my website...its under MEDIA > VIDEO

--
Best Wishes.....John Kelly
www.the-kellys.org
www.the-kellys.co.uk
Check out free video hosting at www.the-kellys.org
----
\|||/
(oo)
----------ooO-(_)-Ooo-------------
All material gained from other sources is duly acknowledged. No Value is
obtained by publishing in any format other peoples work
 
Which good/cheap software can do this without damaging the size?

You can achieve the required effect within Windows Movie maker by using the
custom rotate effect i made many months ago. These effects rotate the
video while keeping the aspect ratio intact. Copy paste the following xml
code into notepad and save as "rotate.xml" in C:\Program Files\Movie
Maker\Shared\AddOnTFX. Create the fodler if not there. Restart WMM
afterwards.


<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>
 
Back
Top