You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

201 unable to load on IE 8 Created Sep 2, 2010

This thread is solved

Views: 1658     Replies: 7     Last reply Sep 8, 2010  
You must login first before you can use this feature

Inazo

Posts: 5

Registered:
Sep 2, 2010

201 unable to load on IE 8

Posted: Sep 2, 2010

Hello all,

I have a problem when try to load a video with Internet Explorer and "flowplayer-3.2.3-0.swf"

I have this : error #1009 : clip:['clip'] "null"

my sample code :

	$("#"+IdVideoZone).flowplayer(
		
			{
		src: "flowplayer-3.2.3-0.swf"},{
			
			playlist: [
			       	
			   		// this first PNG clip works as a splash image
			   		{
			   			url: VideoPreview,
			   			width:569,
			   			height:319
			   		},
			   		
			   		// second clip is a video. when autoPlay is set to false the splash screen will be shown
			   		{
			   			url: VideoPath, 
			   			autoPlay: false, 
			   			
			   			// video will be buffered when splash screen is visible
			   			autoBuffering: false 
			   		}
			   	]
	}
			

Any idea ?

Thanks a lot,

Best regards.

Inazo.

profapprentice

Posts: 1

Registered:
Sep 3, 2010

» 201 unable to load on IE 8

Posted: Sep 3, 2010

Reply to: 201 unable to load on IE 8, from Inazo
Have you tried other browsers?

Inazo

Posts: 5

Registered:
Sep 2, 2010

» » 201 unable to load on IE 8

Posted: Sep 3, 2010

Reply to: » 201 unable to load on IE 8, from profapprentice
Yes,

Work fine in Firefox.

Best regards,
Inazo.

Inazo

Posts: 5

Registered:
Sep 2, 2010

» 201 unable to load on IE 8

Posted: Sep 6, 2010

Reply to: 201 unable to load on IE 8, from Inazo
Nobody have an idea ?

Clip Null but why ? Playlist don't make clip ?

Best regards,

Anssi
Flowplayer Flash & video streaming developer

Posts: 1194

Registered:
Jul 24, 2007

» » 201 unable to load on IE 8

Posted: Sep 7, 2010

Reply to: » 201 unable to load on IE 8, from Inazo
Can you have a sample page online? What are the values of VideoPreview and VideoPath?

Inazo

Posts: 5

Registered:
Sep 2, 2010

» » » 201 unable to load on IE 8

Posted: Sep 7, 2010

Reply to: » » 201 unable to load on IE 8, from Anssi
Hello,

Yes you can see it here :

http://starloo.com/media/fr/realisateur-the-black-sheep.html

When you click on a small picture the bug in IE is appear.

But don't have this bug with Firefox or Chrome.

Thanks a lot,

Best regards.

Anssi
Flowplayer Flash & video streaming developer

Posts: 1194

Registered:
Jul 24, 2007

» » » » 201 unable to load on IE 8

Posted: Sep 8, 2010

Reply to: » » » 201 unable to load on IE 8, from Inazo
When those thumbnail images are clicked it seems to reload the whole player. Might be a better idea to just instruct the player to play the associated playlist like this:


$f().play([
                    {
                        url: VideoPreview,
                        width:569,
                        height:319
                    },
                    {
                        url: VideoPath, 
                        autoPlay: false, 
                        
                        // video will be buffered when splash screen is visible
                        autoBuffering: false 
                    }]);

Not sure why you get that error in IE but i would try and see if this approach helps.

Inazo

Posts: 5

Registered:
Sep 2, 2010

» » » » » 201 unable to load on IE 8

Posted: Sep 8, 2010

Reply to: » » » » 201 unable to load on IE 8, from Anssi
Thanks,

I fact thats resolved my problem.

Best regards.