[Lights, Camera, Action]

Home    Forums    Tutorials    Search    Books    Links 

Microsoft Windows Movie Maker tips, tutorials, forums and more....

     
Windows Movie Maker Home   Search   Login   Register   Member List  
Windows Movie Maker  > Technical Support  > Video transitions an effects file missing  
Previous Thread :: Next Thread 
 Author Thread: Video transitions an effects file missing
meelad is not online. Last active: 2/8/2004 1:01:51 PM meelad
Joined: 06 Feb 2004
Total Posts: 2
 
Video transitions an effects file missing
Posted: 06 Feb 2004 03:38 PM
Dear all,
I need your help and advice concerning video transitions an effects problem.
Each time that I open the movie maker 2 I receive an error that the file for video transitions and effect is missing, in addition, the video effects transitions are not available.
I tried to install mm2 again but it didn’t help.
Please help me.
Thanks
cwadams is not online. Last active: 9/16/2004 6:43:52 PM cwadams
Top 100 Poster
Joined: 02 Feb 2004
Total Posts: 33
 
Re: Video transitions an effects file missing
Posted: 06 Feb 2004 06:26 PM
This issue is beyond me, but I do have a possible simple suggestion.

Under Windows XP there is a pretty cool back-up/recovery procedure that runs, whereby you can restore to a point in time (provided the recovery service has been turned on, don't ask me for details as I don't know them).

If you can get into a recovery wizard, you may be able to restore to a point in time when you knew your system was working.

I messed around with my codecs to the point where I was completely unable to run anything, and I was able to run my recovery wizard to get back to a point prior to me mangling my codecs.
meelad is not online. Last active: 2/8/2004 1:01:51 PM meelad
Joined: 06 Feb 2004
Total Posts: 2
 
Re: Video transitions an effects file missing
Posted: 07 Feb 2004 03:27 AM
Thanks for your advice,
I cannt preform system recovery since I don't have a valid restore point.
Do you have more solutions ?
Thank you again.


Jfresh2007 is not online. Last active: 6/3/2004 6:34:47 PM Jfresh2007
Joined: 28 May 2004
Total Posts: 3
 
Re: Video transitions an effects file missing
Posted: 28 May 2004 10:09 PM
I have this problem too. It came out of no where. And know way in h*ll am I backing my system up! I am working on a huge movie right now for my skate video. I would loose so much. This is really pissing me off. All of a sudden I can only add speed up double and slow down half. My other projects with missing effects have the effects. And when I hit Visual Effects if comes up so I can remove them, but all I can add is freakin speed up or slow down. PLEASE HELP ME!!!

-Josh

http://skateripoff.vze.com
KevRus is not online. Last active: 6/20/2004 6:16:25 PM KevRus
Joined: 31 May 2004
Total Posts: 5
 
Re: Video transitions an effects file missing
Posted: 31 May 2004 12:32 AM
I'm having the same problem too! I've been trying to find an answer all day long! HELP!!! I've tried reinstalling over and over but they still aren't there!
Rehan is not online. Last active: 2/6/2010 8:40:49 PM Rehan
www.rehanfx.org
Top 25 Poster
Joined: 21 Apr 2004
Total Posts: 2157
 
Re: Video transitions an effects file missing
Posted: 31 May 2004 05:41 AM
This problem of missing tranistion and effects seems to be on the increase!!!

I am not sure why it might be happening but most likely it is some rogue program installation or uninistallation that somehow messes up the DLLs in Windows Movie Maker.

If it is caused by DLL files getting unregistered by some rogue uninstaller then it might be possible to fix this by registering these DLLs again.

Copy the text below into a text file named regdlls.bat and place it in C:\Porgram Files\Movie Maker\

and run it. it registers all DLLs found in this directory. (It is potentially dangerous if run anywhere else.)

Please report back success or otherwise so that some other solution be devised.

Rehan

--------- use text below this line -----

for %i in (*.dll) do %windir%\system32\sregsvr32.exe /s %i





www.rehanfx.org - do more with Windows Movie Maker...
KevRus is not online. Last active: 6/20/2004 6:16:25 PM KevRus
Joined: 31 May 2004
Total Posts: 5
 
Re: Video transitions an effects file missing
Posted: 31 May 2004 10:49 AM
It didn't work, when I run the new bat file, it opens for a split second, then closes. When I opened MM2, they all still weren't there...
Rehan is not online. Last active: 2/6/2010 8:40:49 PM Rehan
www.rehanfx.org
Top 25 Poster
Joined: 21 Apr 2004
Total Posts: 2157
 
Re: Video transitions an effects file missing
Posted: 31 May 2004 12:54 PM
Sorry there was a typo in the command i sent. Please try again with this. I have also removed the silent switch so this time it mut display some dialogs. Press OKs to those.

----

for %i in (*.dll) do %windir%\system32\regsvr32.exe %i



www.rehanfx.org - do more with Windows Movie Maker...
Rehan is not online. Last active: 2/6/2010 8:40:49 PM Rehan
www.rehanfx.org
Top 25 Poster
Joined: 21 Apr 2004
Total Posts: 2157
 
Re: Video transitions an effects file missing
Posted: 31 May 2004 05:22 PM
Sorry again. There is still some problem in the above command. It must be executed in a dos window after changing the current directory to "C:\Program Files\Movie Maker". If it has to be used in a batch file as I suggested, there needs to be a small change: the %i must be enterred as %%i. The following is a complete batch file:


@echo off
REM - REGDLLS.BAT
REM Change directory to 'C:\Program Files\Movie Maker'
C:
cd "C:\Program Files\Movie Maker"
REM Registring DLLs found in this directory
for %%i in (*.dll) do %windir%\system32\regsvr32.exe /s %%i



www.rehanfx.org - do more with Windows Movie Maker...
KevRus is not online. Last active: 6/20/2004 6:16:25 PM KevRus
Joined: 31 May 2004
Total Posts: 5
 
Re: Video transitions an effects file missing
Posted: 31 May 2004 05:52 PM
Okay I'm a little confused on what you said, but I think you meant to put what you wrote above into the bat file instead of what you said before, save it. Then open the command prompt and change the current directory to C:\Program Files\Movie Maker. I did that, then ran regdlls.bat and nothing happened again.....????
Rehan is not online. Last active: 2/6/2010 8:40:49 PM Rehan
www.rehanfx.org
Top 25 Poster
Joined: 21 Apr 2004
Total Posts: 2157
 
Re: Video transitions an effects file missing
Posted: 31 May 2004 06:40 PM
So you did not get your transitions and effects back ? Thats a shame... :(

So far we have eliminated following:

1. Re-installing WMM2 doesnt work
2. Forced re-registration of DLLs doesnt work either.

Dont know what should we try next. Perhaps:

3. Re-install DirectX 9a

...

www.rehanfx.org - do more with Windows Movie Maker...
Rehan is not online. Last active: 2/6/2010 8:40:49 PM Rehan
www.rehanfx.org
Top 25 Poster
Joined: 21 Apr 2004
Total Posts: 2157
 
Re: Video transitions an effects file missing
Posted: 31 May 2004 10:40 PM
I meant DirectX 9b or whichever is the latest.

Actually I have done some experiments on my computer which point strongly towards this suggestion to be the correct solution to the problem...

Please can anybody confirm!

Rehan

www.rehanfx.org - do more with Windows Movie Maker...
Jfresh2007 is not online. Last active: 6/3/2004 6:34:47 PM Jfresh2007
Joined: 28 May 2004
Total Posts: 3
 
Re: Video transitions an effects file missing
Posted: 03 Jun 2004 03:06 PM
finally someone replys to this. im in the middle of a big movie for my skate team and i loose everything, let me go try that direct x thing
Jfresh2007 is not online. Last active: 6/3/2004 6:34:47 PM Jfresh2007
Joined: 28 May 2004
Total Posts: 3
 
Re: Video transitions an effects file missing
Posted: 03 Jun 2004 03:22 PM
doesnt work
Linkman59 is not online. Last active: 5/27/2005 2:29:58 PM Linkman59
Joined: 21 Mar 2004
Total Posts: 23
 
Re: Video transitions an effects file missing
Posted: 09 Jun 2004 02:06 PM
Man this is wierd. I wounder why this happened to so many people. Could it be some kind of virus?
v-2stjon is not online. Last active: 6/10/2004 9:11:51 PM v-2stjon
Joined: 10 Jun 2004
Total Posts: 1
 
Re: Video transitions an effects file missing
Posted: 10 Jun 2004 09:06 PM
By chance are you running a Radeon video card?

I had the same issue come up today at work.
We found that after installing mm2 half of the effects were gone and all transitions. The cause was the radeon Multimedia center and drivers. They do not support some of the effects with Direct draw 9.

Try to download the latest MMC and catalyst drivers.
Rehan is not online. Last active: 2/6/2010 8:40:49 PM Rehan
www.rehanfx.org
Top 25 Poster
Joined: 21 Apr 2004
Total Posts: 2157
 
Re: Video transitions an effects file missing
Posted: 11 Jun 2004 05:39 AM
Although it may well be possible but this doesnt make sense as Movie Maker doesnt use hardware acceleration. It uses software renderer of DirectX7.

If it is true then the drivers for the radeon multimedia center are messing up areas which they shouldnt even touch.

Can others with this problem verify what graphics card and software they are using?

www.rehanfx.org - do more with Windows Movie Maker...
Linkman59 is not online. Last active: 5/27/2005 2:29:58 PM Linkman59
Joined: 21 Mar 2004
Total Posts: 23
 
Re: Video transitions an effects file missing
Posted: 11 Jun 2004 01:08 PM
Mybe not. I have the problem to and I dont have a Radeon video card.
Rehan is not online. Last active: 2/6/2010 8:40:49 PM Rehan
www.rehanfx.org
Top 25 Poster
Joined: 21 Apr 2004
Total Posts: 2157
 
Re: Video transitions an effects file missing
Posted: 11 Jun 2004 01:55 PM
OK somebody suggested it all happened after they had a certain spyware/adware attack. Do others have had any spyware/adware problem prior to this issue? How did you resolve it? It may be that the spyware removal program is removing some registry entries related to WMM in error!

Another suggestion to try: make a new administrator account and run the program from that account. Does it have the same problem ?

www.rehanfx.org - do more with Windows Movie Maker...
Linkman59 is not online. Last active: 5/27/2005 2:29:58 PM Linkman59
Joined: 21 Mar 2004
Total Posts: 23
 
Re: Video transitions an effects file missing
Posted: 11 Jun 2004 02:43 PM
Good News!!! I have no idea how this happened or why it happened but I checked back in the windows movie maker and clicked on transitions and they were all back same with effects!!! I did not do any kind of truobleshooting or anything. My only advise is to check your movie maker to see if they have come back and if there not Im sorry but your out of luck:(
WaynderALien is not online. Last active: 2/26/2006 1:05:54 PM WaynderALien
Joined: 12 Feb 2006
Total Posts: 2
 
Re: Video transitions an effects file missing
Posted: 12 Feb 2006 10:41 AM
oke....now is 2006 and now i have that problem... im on MM 2.1

anybody find something out?
MHS-TV is not online. Last active: 5/28/2008 6:19:54 PM MHS-TV
Joined: 22 May 2006
Total Posts: 3
 
Re: Video transitions an effects file missing
Posted: 22 May 2006 08:55 AM
Same problem with missing transitions and effects. This has happened in a lab of 25 computers. All have missing transitions and effects. Another computer in my office works fine.
What a pain!
lisakate is not online. Last active: 5/25/2006 10:02:49 AM lisakate
Joined: 25 May 2006
Total Posts: 1
 
Re: Video transitions an effects file missing
Posted: 25 May 2006 10:02 AM
This is awful! I too have a lab with missing transitions and effects on a case-by-case basis. One day I log in and they are there, another day they are not. ?????
considerate_guy is not online. Last active: 2/3/2010 4:59:06 PM considerate_guy
movies.blainesville.com
Top 25 Poster
Forum Moderator
Joined: 23 Mar 2005
Total Posts: 17276
 
Re: Video transitions an effects file missing
Posted: 25 May 2006 11:38 AM
Are you running Vision 6 software by any chance? Click the link for a fix for that software.

-=Blaine=-

Blaine - Digital Media MVP
Movie Maker (Custom Titles, Effects. etc.)Cool
Puzzles
Family
domidom is not online. Last active: 6/17/2006 4:47:05 PM domidom
Joined: 17 Jun 2006
Total Posts: 1
 
Re: Video transitions an effects file missing
Posted: 17 Jun 2006 04:47 PM
I am thinking that the files are missing due to another program being installed because my movie maker woz wurkin fine and then i installed the flyakite osx transformation pack and guess wot???


Files gone!!!!!!!!!!!!STUPID PROGRAMS!!!
So my solution is to if its not to important then remove the program that you think is breaking movie maker restart and see!!!!!!

Dom the tdog!!!{:@}{
considerate_guy is not online. Last active: 2/3/2010 4:59:06 PM considerate_guy
movies.blainesville.com
Top 25 Poster
Forum Moderator
Joined: 23 Mar 2005
Total Posts: 17276
 
Re: Video transitions an effects file missing
Posted: 18 Jun 2006 12:07 PM
If it just happened, try a System Restore back to before you installed the other program...

Blaine - Digital Media MVP
Movie Maker (Custom Titles, Effects. etc.)Cool
Puzzles
Family
movie111 is not online. Last active: 10/5/2006 12:11:11 AM movie111
Joined: 25 Jun 2006
Total Posts: 33
 
Re: Video transitions an effects file missing
Posted: 25 Jun 2006 12:21 PM
Ok, so Movie Maker was running just fine, until there was somthing strange going on. Every time I try to add the text Im seeing a blank gray screen, even the effects don't work! Im very pissed right now and I need help!!
nocogito is not online. Last active: 7/3/2006 5:25:36 PM nocogito
Joined: 27 Jun 2006
Total Posts: 3
 
Re: Video transitions an effects file missing
Posted: 27 Jun 2006 03:29 PM
I'm thinking it might be the Bricopack Windows XP screen themes.
Click.
Or another program you have installed...


My friend and I both just downloaded it, and now have this problem. I'm going to try and uninstall it, and see what happens. Anyone else download this and get the same error?
nocogito is not online. Last active: 7/3/2006 5:25:36 PM nocogito
Joined: 27 Jun 2006
Total Posts: 3
 
Re: Video transitions an effects file missing
Posted: 27 Jun 2006 03:38 PM
Can we edit replies here?

That worked.. and I'm not entirely sure why. Too bad.. I'll miss the Linux penguins dominating the dektop.
Rehan is not online. Last active: 2/6/2010 8:40:49 PM Rehan
www.rehanfx.org
Top 25 Poster
Joined: 21 Apr 2004
Total Posts: 2157
 
Re: Video transitions an effects file missing
Posted: 29 Jun 2006 07:04 AM
Nocogito,

Are you saying that installation of that software caused the problem and removal of it restored the missing effects & transitions? Your sentence above is not very clear. I will note it as one of the potential culprit then.


www.rehanfx.org - do more with Windows Movie Maker...
nocogito is not online. Last active: 7/3/2006 5:25:36 PM nocogito
Joined: 27 Jun 2006
Total Posts: 3
 
Re: Video transitions an effects file missing
Posted: 29 Jun 2006 12:36 PM
That's what I meant.
Blinkz is not online. Last active: 8/26/2006 1:48:36 PM Blinkz
Joined: 10 Jul 2006
Total Posts: 2
 
Re: Video transitions an effects file missing
Posted: 30 Jul 2006 01:55 AM
Is there a fix to this yet.

None of the threads that i have seen have a fix to this issue yet.

(sorry for the bumb)
Ishkoo is not online. Last active: 8/15/2006 10:33:27 AM Ishkoo
Joined: 11 Aug 2006
Total Posts: 1
 
Re: Video transitions an effects file missing
Posted: 11 Aug 2006 10:18 AM
I'm having this problem too. I have an Nvidia card, so I can rule out the ATI problem (although I did have an ATI card 6 months or so ago).
jeff_uk is not online. Last active: 8/29/2006 10:04:32 AM jeff_uk
Joined: 28 Aug 2006
Total Posts: 1
 
Re: Video transitions an effects file missing
Posted: 28 Aug 2006 08:16 PM
Guys, I dabble with MM and last used it some time ago (year+) and have just come back to use it again and noticed the same problem, namely all but 2 effects are missing
(Slow Down, Half and Speed Up, Double) and all transitions missing (previous movies still have them embedded, but not available for new movies). I've certainly installed various pieces of software during this time, including service packs and other package updates, so returning to a System Restore Point isn't an option for me.

I've tried playing around and have noticed that the effects _do_ appear if I
run MM2 from an Administrator account (I normally run with a standard User
account (WinXP Pro) and have most System and Program directories locked down
to read-only access).

So, tried setting the permissions on "c:\program files\movie maker" to Full
Control to the Users group, but no luck. Had a quick look in the registry but no obvious differencies that I can spot. So for the moment I'm going to have to use an Admin based account (not ideal...)

Don't know if this helps much, but might be a pointer for the techies on this forum to pin the problem down....

Jeff
Arith is not online. Last active: 9/3/2006 7:08:28 PM Arith
Joined: 23 Mar 2006
Total Posts: 9
 
Re: Video transitions an effects file missing
Posted: 03 Sep 2006 03:02 PM
Im having the same exact problem. My transition and effect are ALL GONE! Im in desperate need of 'fade into black' and 'fade into white', but without the needed effects, im shot! Nothing has work so far, and this is really, really annoying!

Any update on this?
Mikeb220 is not online. Last active: 9/17/2006 3:11:25 PM Mikeb220
Joined: 04 Sep 2006
Total Posts: 1
 
Re: Video transitions an effects file missing
Posted: 04 Sep 2006 01:23 AM
I have this same problem. all of my effects except for speed up and slow down are gone. This problem came up around the time that I installed the newest versions of Windows Media Player, Internet Explorer, and Windows Live Messenger. I have tried everything that I have found posted (except for system restore) and nothing has worked. I also had effects that did not come with Windows Movie Maker that have also disappeared. I have tried re-registering and even replacing the DLL's, but it hasn't worked. Does anyone have a solution?

Mike
Shogo is not online. Last active: 10/14/2006 3:53:28 PM Shogo
Joined: 14 Oct 2006
Total Posts: 3
 
Re: Video transitions an effects file missing
Posted: 14 Oct 2006 03:52 PM
Well i can confirm that uninstalling the bricopack was the solution for me too. All the effects and transitions are back...
ph34rm3 is not online. Last active: 10/14/2006 6:22:06 PM ph34rm3
Joined: 14 Oct 2006
Total Posts: 1
 
Re: Video transitions an effects file missing
Posted: 14 Oct 2006 06:22 PM
i recently bought a laptop from an old college roomate and tried downloading MM2. it downloaded just fine and when i imported my files and previewed a clip no problems again. however when i dragged a clip onto the timeline i hear the audio but see no video. all my effects are gone as well too. is there something i can do? even in story board i see no video.
juuser is not online. Last active: 12/6/2006 5:30:12 AM juuser
Joined: 05 Dec 2006
Total Posts: 1
 
Re: Video transitions an effects file missing
Posted: 05 Dec 2006 02:02 PM
I had also bricopacks crystal clear and uninstalling it, resolved the problem. But since i liked bricopacks really much, i reinstalled it with personalised settings, from where i could choose that i want to exclude windows movie maker from patching and now i have effects and transitions and bricopacks...although i don't see anythin in windows movie player preview window now :/
supersai20 is not online. Last active: 6/23/2007 8:23:46 PM supersai20
Joined: 20 Jun 2007
Total Posts: 1
 
Virtual Dub
Posted: 20 Jun 2007 11:52 PM
i also had this problem I suguest using virtual dub for all editing in the filters drop down you can even download new filters(video edits)
Previous Thread :: Next Thread 
Page 1 of 2Goto to page: [1], 2 Next
 
Windows Movie Maker  > Windows Movie Maker  > Technical Support  > Video transitions an effects file missing