Page 1 of 1

Error Message

Posted: 20 Dec 2007 17:26
by dutingam
After start a Firefox stream shows me this message:
Runtime Error, Programm: c:\programme\Mozilla Firefox\firefox.exe

R6034
An appilaction had made an attempt to load the C runtime library incorrectly
Please contact ....

after push the ok button VLC works correctly, but each start, shows me
the error message, can you help me!

Re: Error Message

Posted: 21 Dec 2007 19:24
by VLC_help
What versions of VLC and Firefox you use?

Re: Error Message

Posted: 22 Dec 2007 15:35
by dutingam
Firefox 2.0.0.11
VLC 0.8.6d

Re: Error Message

Posted: 23 Dec 2007 04:34
by fishpool
I too am having the same email and just wanted to CC myself on any fixes that arise or know of any information i can add to help solve this problem]

thanks!

><>

Re: Error Message

Posted: 23 Dec 2007 04:36
by fishpool
actually, i lied - my issue is that i have the same error and i can not stream video (i used the test page and it says no media)

Re: Error Message

Posted: 05 Dec 2008 13:49
by epgawt
Hi,

first of all, I am using 0.8.6i, but the problem is exactly the same, so maybe the workaround I've found may help 0.9.2 users (hopefully me when I decide to upgrade). I am posting this in 0.8.6 posts too.

The situation where I got R6034 crash was when opening the window with the plugin and in the onload event I tried to start playing.

Solution:

<BODY onload="adjust2Window();sleepy(500); playit();" >

where adjust2Window is window resizing stuff, playit calls the "play" method in the plugin, and sleepy is:

function sleepy(naptime){
var sleeping = true;
var now = new Date();
var alarm;
var startingMSeconds = now.getTime();
while(sleeping){
alarm = new Date();
alarmMSeconds = alarm.getTime();
if(alarmMSeconds - startingMSeconds > naptime){
sleeping = false;
}
}
}


BTW, using the same approach I solved too a Firefox 3.0.4 Hang in XP (SP3) when closing the window while it is still playing ( I am posting this where I find the same problem in the forum)

<BODY onload="adjust2Window();sleepy(500); playit();" onunload="stopit();sleepy(500);" >

stopit calls the plugin stop method.

Regards
Enrique