Custom Effects with Movie Maker 2

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi, my name is aaron. ive been using Movie Maker 2 for a couple of weeks now
and have started getting into it quite a lot. the only set-back is that i
want a specific effect for my next video - a blue cast on the video clips.
rather like The Matrix's green cast but blue.
ive tried creating the effect myself but i just dont know XML. i was
wondering if anyone knows how to do this? would it be possible to send me the
code?
also, if its possible, could you tell me how to adjust the amount of blue in
the cast. i would really like to use this kind of effect in future videos and
would appreciate the know-how.
thank you so very much in advance!

aaron symons
 
iceboy said:
hi, my name is aaron. ive been using Movie Maker 2 for a
couple of weeks now and have started getting into it
quite a lot. the only set-back is that i want a specific
effect for my next video - a blue cast on the video
clips. rather like The Matrix's green cast but blue.
ive tried creating the effect myself but i just dont know
XML. i was wondering if anyone knows how to do this?
would it be possible to send me the code?
also, if its possible, could you tell me how to adjust
the amount of blue in the cast. i would really like to
use this kind of effect in future videos and would
appreciate the know-how.
thank you so very much in advance!

aaron symons
=============================
Maybe the following links will be useful:

Creating Custom Effects and
Transitions in Windows Movie Maker
http://tinyurl.com/kmyns

Go to...Editing Movies / XML Persian
Section.....you'll find 8 links...
http://www.papajohn.org/

Custom Effects, Transitions and
Title Overlays for Movie Maker 2
http://tinyurl.com/kgmqk

PIP Plus
http://www.rehanfx.org/pipplus.htm

--

*Notice*
This is not tech support.
I am only a volunteer.....

Solutions that work for
me may not work for you.

Proceed at your own risk.

John Inzer
Picture It! MVP

Digital Image
Highlights and FAQs
http://tinyurl.com/aczzp
 
The following XML code will give you a set of color filters. Copy paste the
code into Notepad and then save it in "C:\Program Files\Movie
Maker\Shared\AddOnTFX" fodler with name "colorfitlers.xml". You may have to
create the AddOnTFX folder if this is the first time you are saving the
custom effects xml.



<TransitionsAndEffects Version="1.0">
<Effects>
<EffectDLL guid="{B4DC8DD9-2CC1-4081-9B2B-20D7030234EF}" >
<Effect name="Color Filter: Greenish" iconid="16" >
<Param name="InternalName" value="Hue" />
<Param name="Value" value="0.3" />
<Param name="EndValue" value="0.3" />
</Effect>
<Effect name="Color Filter: Blueish" iconid="16" >
<Param name="InternalName" value="Hue" />
<Param name="Value" value="0.0" />
<Param name="EndValue" value="0.0" />
</Effect>
<Effect name="Color Filter: Orangish" iconid="16" >
<Param name="InternalName" value="Hue" />
<Param name="Value" value="0.6" />
<Param name="EndValue" value="0.6" />
</Effect>
<Effect name="Color Filter: Yellowish" iconid="16" >
<Param name="InternalName" value="Hue" />
<Param name="Value" value="0.5" />
<Param name="EndValue" value="0.5" />
</Effect>
<Effect name="Color Filter: Redish" iconid="16" >
<Param name="InternalName" value="Hue" />
<Param name="Value" value="0.66" />
<Param name="EndValue" value="0.66" />
</Effect>
</EffectDLL>
</Effects>
</TransitionsAndEffects>
 
Thank you so much! The filters are great. I was really counting on being able
to filter my next video with a blue colour and now I can. You've made my day!

Thanks again,

Aaron Symons
 
nihility00 said:
How do I use this after I have made the file, thanks alot!
==================================
Maybe the following article will offer some ideas:

Creating Custom Effects and
Transitions in Windows Movie Maker
http://tinyurl.com/kmyns

--

*********Notice**********
This is not tech support.
....I am only a volunteer...

Solutions that work for
me may not work for you.

Proceed at your own risk.

John Inzer
Picture It! MVP

Digital Image
Highlights and FAQs
http://tinyurl.com/aczzp
 
Back
Top