473,416 Members | 1,721 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,416 software developers and data experts.

Movie maker transition

Hi,

Can I find transitions like on movie maker ?
Can I use it on C# program ?

Jun 5 '06 #1
9 4239
There are a number of IE specific transitions such as this one...
<meta http-equiv="Page-Exit"
content="progid:DXImageTransform.Microsoft.Fade(du ration=.5)" />

I don't have a list of the others.
If you find the list or what they are actually called please reply and let
us know.

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/
"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i39g2000cwa.googlegr oups.com...
Hi,

Can I find transitions like on movie maker ?
Can I use it on C# program ?

Jun 5 '06 #2
Audrey,

AFAIK, there is no way to apply transitions in Movie Maker to some video
you might be playing. If I had to guess, I would say that Movie Maker hooks
into the filter stream in DirectPlay and then modifies the output then.

This is no small task in C#. Are you trying to do this for a piece of
video?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i39g2000cwa.googlegr oups.com...
Hi,

Can I find transitions like on movie maker ?
Can I use it on C# program ?

Jun 5 '06 #3
I want to develop a c# windows form which allows me to apply some
transition on image.

Nicholas Paldino [.NET/C# MVP] a écrit :
Audrey,

AFAIK, there is no way to apply transitions in Movie Maker to some video
you might be playing. If I had to guess, I would say that Movie Maker hooks
into the filter stream in DirectPlay and then modifies the output then.

This is no small task in C#. Are you trying to do this for a piece of
video?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i39g2000cwa.googlegr oups.com...
Hi,

Can I find transitions like on movie maker ?
Can I use it on C# program ?


Jun 5 '06 #4
Hi Clinton,

[...]
I don't have a list of the others.
If you find the list or what they are actually called please reply and let
us know.


[...]

see:

http://msdn.microsoft.com/workshop/a...asp?frame=true

http://msdn.microsoft.com/workshop/a...asp?frame=true

Thorsten

Jun 5 '06 #5
Audrey,

You would probably have an easier time writing the code to do the
transition yourself, doing the custom painting between the two images.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Audrey" <Au*************@ifrance.com> wrote in message
news:11*********************@i40g2000cwc.googlegro ups.com...
I want to develop a c# windows form which allows me to apply some
transition on image.

Nicholas Paldino [.NET/C# MVP] a écrit :
Audrey,

AFAIK, there is no way to apply transitions in Movie Maker to some
video
you might be playing. If I had to guess, I would say that Movie Maker
hooks
into the filter stream in DirectPlay and then modifies the output then.

This is no small task in C#. Are you trying to do this for a piece of
video?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i39g2000cwa.googlegr oups.com...
Hi,

Can I find transitions like on movie maker ?
Can I use it on C# program ?

Jun 6 '06 #6
Thanks for this information.
It is the only solution : to write my program. I though that I could
re-use a program

Audrey

Nicholas Paldino [.NET/C# MVP] a écrit :
Audrey,

You would probably have an easier time writing the code to do the
transition yourself, doing the custom painting between the two images.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Audrey" <Au*************@ifrance.com> wrote in message
news:11*********************@i40g2000cwc.googlegro ups.com...
I want to develop a c# windows form which allows me to apply some
transition on image.

Nicholas Paldino [.NET/C# MVP] a écrit :
Audrey,

AFAIK, there is no way to apply transitions in Movie Maker to some
video
you might be playing. If I had to guess, I would say that Movie Maker
hooks
into the filter stream in DirectPlay and then modifies the output then.

This is no small task in C#. Are you trying to do this for a pieceof
video?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i39g2000cwa.googlegr oups.com...
Hi,

Can I find transitions like on movie maker ?
Can I use it on C# program ?


Jun 6 '06 #7
Is this what you are looking for?
http://msdn.microsoft.com/library/de...iemakersfx.asp

chanmm

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@u72g2000cwu.googlegr oups.com...
Thanks for this information.
It is the only solution : to write my program. I though that I could
re-use a program

Audrey

Nicholas Paldino [.NET/C# MVP] a écrit :
Audrey,

You would probably have an easier time writing the code to do the
transition yourself, doing the custom painting between the two images.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Audrey" <Au*************@ifrance.com> wrote in message
news:11*********************@i40g2000cwc.googlegro ups.com...
I want to develop a c# windows form which allows me to apply some
transition on image.

Nicholas Paldino [.NET/C# MVP] a écrit :
Audrey,

AFAIK, there is no way to apply transitions in Movie Maker to some
video
you might be playing. If I had to guess, I would say that Movie Maker
hooks
into the filter stream in DirectPlay and then modifies the output then.

This is no small task in C#. Are you trying to do this for a piece
of
video?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i39g2000cwa.googlegr oups.com...
Hi,

Can I find transitions like on movie maker ?
Can I use it on C# program ?

Jun 6 '06 #8
Hi -- thanks for the URLs Thorsten (cool name dude).

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

"Thorsten Gudera" <Th*************@t-nichtspam-online.de> wrote in message
news:Ol**************@TK2MSFTNGP02.phx.gbl...
Hi Clinton,

[...]
I don't have a list of the others.
If you find the list or what they are actually called please reply and let
us know.


[...]

see:

http://msdn.microsoft.com/workshop/a...asp?frame=true

http://msdn.microsoft.com/workshop/a...asp?frame=true

Thorsten

Jun 6 '06 #9
Thanks for this URL.

chanmm a écrit :
Is this what you are looking for?
http://msdn.microsoft.com/library/de...iemakersfx.asp

chanmm

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@u72g2000cwu.googlegr oups.com...
Thanks for this information.
It is the only solution : to write my program. I though that I could
re-use a program

Audrey

Nicholas Paldino [.NET/C# MVP] a écrit :
Audrey,

You would probably have an easier time writing the code to do the
transition yourself, doing the custom painting between the two images.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Audrey" <Au*************@ifrance.com> wrote in message
news:11*********************@i40g2000cwc.googlegro ups.com...
I want to develop a c# windows form which allows me to apply some
transition on image.

Nicholas Paldino [.NET/C# MVP] a écrit :
Audrey,

AFAIK, there is no way to apply transitions in Movie Maker to some
video
you might be playing. If I had to guess, I would say that Movie Maker
hooks
into the filter stream in DirectPlay and then modifies the output then.

This is no small task in C#. Are you trying to do this for a piece
of
video?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Audrey" <Au*************@ifrance.com> wrote in message
news:11**********************@i39g2000cwa.googlegr oups.com...
> Hi,
>
> Can I find transitions like on movie maker ?
> Can I use it on C# program ?
>


Jun 7 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Sanjeeva Reddy | last post by:
1)how to get the preview of movie file to add in imagelist(i mean the first frame of movie file. )(in .net frame work,windows Forms application) in a listview control. here i am giving code for...
1
by: =?Utf-8?B?R3JlZ29yeU5lbHNvbg==?= | last post by:
How do I get the beatuful Plus! Movie Maker transitions that I had on XP to work with Vista version of Movie Maker. I'd hate to think I lost a product I invested in beacuse I actually upgraded my...
2
by: =?Utf-8?B?SG9sbHk=?= | last post by:
Please help...I'm trying to make a movie of different clips. I can add a set of clips from one collection to the storyboard and it plays fine. Then I will add another set of clips from another...
8
Death Slaught
by: Death Slaught | last post by:
The title is the question. what would be the best way to embed a video that was made in windows movie maker ive tried different formats .swf .avi .mpeg and ive tried embeding it, making it a link,...
0
by: =?Utf-8?B?c2R1bWU=?= | last post by:
im trying to make a movie on windows movie maker, but when i put the 8th picture it gets closed and i cant finish it. why? and how can i fix it? -- Sdume.
3
by: zb42 | last post by:
I have a _mc that I've added to the stage. On it's layers first frame I have this code that spins the _mc around and has some great effects: import fl.transitions.*; import...
1
by: =?Utf-8?B?TWlrZQ==?= | last post by:
Once I make movie what video size will it be? The same size as screen in preview of movie maker?
5
by: =?Utf-8?B?V2FsdA==?= | last post by:
Can't import music to movie maker. The tracks show in my music. But when I try to import from my music, under the audio file extension, the folder shows empty. When I click on "all files" the...
0
by: =?Utf-8?B?b2J4aHVycmljYW5l?= | last post by:
I've found several different reponses here and on other sites saying that if you get the message that "movie maker has stopped working" in vista that is probably a compatibility issue and how to...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.