Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

error 2124


when i load my player with auto start i get error 2124 but when i load with video,preview, and overlay control bar it works fine a little help plz

14 Community Answers

JW Player

User  
0 rated :


See:*www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/runtimeErrors.html*

Usually means an unrecognized media file extension.

Use the flashvar *provider* to specify the media file type.

JW Player

User  
0 rated :

Hello! I'm with the #2124 error. I use an XML playlist. Trust the code it:

bc.. <?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
<title>Your MP3 Playlist</title>
<info>http://www.portalcalypso.weebly.com/</info>

<trackList>

<track>
<title>PORTAL CALYPSO 2010</title>
<creator>Portal Calypso</creator>
<info></info>
<annotation>
Vdeo de Divulgao do Portal Calypso para 2010.
</annotation>
<location>http://www.youtube.com/watch?v=Wl2OcNb52OU</location>
</track>

<track>
<title>"DANANDO CALYPSO" - 5 DVD</title>
<creator>Portal Calypso</creator>
<info></info>
<annotation>
udio da msica "Danando Calypso" - 5 DVD.
</annotation>
<location>http://www.youtube.com/watch?v=9HTB7B0D_m0</location>
</track>

<track>
<title>"XONOU, XONOU" - 5 DVD</title>
<creator>Portal Calypso</creator>
<info></info>
<annotation>
udio da msica "Xonou, Xonou" - 5 DVD.
</annotation>
<location>http://www.youtube.com/watch?v=m9oP9x2nALc</location>
</track>


</trackList>
</playlist>



And use the following code to embed the player in my site:

bc.. <script type='text/javascript' src='http://www.jeroenwijering.com/embed/swfobject.js'></script>

<div id='mediaspace'>This text will be replaced</div>

<script type='text/javascript'>
var so = new SWFObject('/player.swf','mpl','300','380','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('playlistfile','/playlist.xml');
so.addVariable('backcolor','000000');
so.addVariable('frontcolor','FFFFFF');
so.addVariable('lightcolor','FF0000');
so.addVariable('screencolor','333333');
so.addVariable('playlist','bottom');
so.write('mediaspace');
</script>



What is it gives error? The player loads, along with the playlist, but when I go to PLAY on the video it gives error # 2124.

Help me please. Is there something wrong with the codes? The videos are removed from the playlist XML from YouTube (the URL). I await answers. Sincerely, thank you!

Ethan Feldman

JW Player Support Agent  
0 rated :

Can you provide the link to where you are running this on your site?

JW Player

User  
0 rated :

Hello! At the moment my site is currently in progress and I am trying to deploy the longtail video. How can you help me?

JW Player

User  
0 rated :

I'm hosting the files on RIPWAY (www.ripway.com). The error has something to do with the site hosting? Thank you.

Ethan Feldman

JW Player Support Agent  
0 rated :

I am not sure, as I have never used ripway, but if you can put up a link, I would be able to help you :)

JW Player

User  
0 rated :

Ethan, I just want to know where the error, if the code in the playlist and why this error. Thanks!

Ethan Feldman

JW Player Support Agent  
0 rated :

2124 Loaded file is an unknown type.

Please put up a link when you can, thanks.

JW Player

User  
0 rated :

Put that link? Sorry is filling your patience, we really need that player. Thanks!

You have some good site to host the files, such as "player.swf" and others?

Ethan Feldman

JW Player Support Agent  
0 rated :

I have not used ripway before.

I would use an actual hosting provider…one that you have to pay for. Or set up your own Apache server at home.

When you can put up a test link anywhere, please paste it here, because I can’t debug the issue without seeing it. Thanks.

JW Player

User  
0 rated :

Hello! I did further testing and gave the same error.

Here is the link where I'm hosting the XML: http://h1.ripway.com/PortalCalypso2010/playlistwiththejwplayer.xml

I await help. Thanks!

Ethan Feldman

JW Player Support Agent  
0 rated :

This XML file is fine. Where are you embedding the player though?

JW Player

User  
0 rated :

I'm using the following code to put that playlist from the previous topic's giving him and the # 2124. Here's the code:

bc.. <script type='text/javascript' src='http://www.jeroenwijering.com/embed/swfobject.js'></script>

<div id='mediaspace'>This text will be replaced</div>

<script type='text/javascript'>
var so = new SWFObject('/player.sfw','mpl','300','380','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('playlistfile','http://h1.ripway.com/PortalCalypso2010/playlistwiththejwplayer.xml');
so.addVariable('backcolor','000000');
so.addVariable('frontcolor','FFFFFF');
so.addVariable('lightcolor','FF0000');
so.addVariable('screencolor','333333');
so.addVariable('playlist','bottom');
so.write('mediaspace');
</script>


I wonder what is giving error? Thank you for your immense attention, thank you.

Pablo

JW Player Support Agent  
0 rated :

<p>The reason this error is occurring is because the playlist XML file is being hosted on a server that doesn’t allow Flash to load content across domains. We’ve got an article about this issue here:</p>

<a href="http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v4/12260/crossdomain-security-restrictions">http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v4/12260/crossdomain-security-restrictions</a>

This question has received the maximum number of answers.