How to insert this m3u8 in jw player

All newcomers are here, so if you can be patient with me, I really appreciate that.

Now i have this url

http://213.202.73.8:1234/data/channels/ARENA1. m3u8 

I want to include this in my JW Player, I have both Jw Player 5 and 6. Whatever is easier, can someone help my brother and what code do I need to embed in him to play on JW Player, if possible.

If you could write a FULL code so I can understand, because I said here are all newbies, but a fast learner LOL.

Greetings guys

UPDATE:

Ok, so I had a little fiddle, and after I saw around, this code appeared:

 <script type='text/javascript' src='jwplayer2/jwplayer.js'></script> <div id='mediaplayer'></div> <script type="text/javascript"> jwplayer('mediaplayer').setup({ 'id': 'playerID', 'width': '480', 'height': '270', 'file': 'http://213.202.73.8:1234/data/channels/ARENA1. m3u8', 'image': '/thumbs/bunny.jpg', 'modes': [ {type: 'html5'}, {type: 'flash', src: 'player.swf'}, {type: 'download'} ] }); </script> 

Thus, it works brilliantly in safari, but not in chrome, IE, or Firefox. Any ideas as to why. When I press the play button with these browsers, nothing happens, it just doesn’t load a thing like a timer in the middle of the player, it doesn’t go around its attempt to download something, but nothing in the lol player.

Greetings guys

UPDATE 2:

If his link to the site is here: http: //testersite.byethost22 . com /test.html

UPDATE 3:

Ive also tried another one, and this time he says: "The video cannot be downloaded because the server or network failed or because the format is not supported:" http://video.popler.tv►54/publishlive/4funtv/ playlist.m3u8 "

You can see it here: http: //testersite.byethost22. com / y. html He talks about it in safari only, although the same problem as before, with chrome, etc., but now when I click on the player in chrome, it just loads the .m3u8 playlist

Hope someone can help, Cheers

UPDATE 4:

Well, if you go here: http://testersite.byethost22.com/test5.html and try to play with the idea, you will see that it works fine, but using chrome, firefox on my computer just does not work, they are desperate now, guys, if someone can help me get this to work on chrome and firefox, I would be tired and be a happy happy person !! as I said, either jwp5 or jwp6 will be great, as long as it works on chrome and firefox, I really don't mind. Thanks guys and please someone help lol, and yes, I know there are spaces in some URLs, but I had to make it as if I didn’t have enough reputation points to post more than two links .

+8
source share
2 answers

Here you are using JW Player 5, which does not support HLS (M3U8) on desktops (in Flash). Only JW6 Premium supports this. Here is a demo - http://www.longtailvideo.com/support/jw-player/29393/hls-adaptive-stream

Update, here is the code, it only works in JW6 Premium:

 <div id="myElement"></div> <script> jwplayer("myElement").setup({ image: "/uploads/myPoster.jpg", file: "/uploads/myManifest.m3u8", }); </script> 
+6
source

In fact, the version of JW Player 6 for advertising supports M3U8, and it talks about the release of ads, but the ads do not appear, you put this player in your .html file or wherever you want this player to play your broadcasts in real time or m3u8 playlist, here are the codes I compiled:

 <head> <style>*{margin:0;padding:0;}</style> <script data-cfasync="false" src="http://jwpsrv.com/library/SakQCEfSEeOHhRIxOQfUww.js"></script> </head> <body> <div id="playerjxJRqLMFuJaA_wrapper" style="position: relative; display: block; width: 100%; height: 490px;"> <a id="beforeswfanchor0" href="#playerjxJRqLMFuJaA" tabindex="0" title="Flash start" style="border:0;clip:rect(0 0 0 0);display:block;height:1px;margin:-1px;outline:none;overflow:hidden;padding:0;position:absolute;width:1px;" data-related-swf="playerjxJRqLMFuJaA"></a> <object type="application/x-shockwave-flash" data="http://p.jwpcdn.com/6/12/jwplayer.flash.swf" width="100%" height="100%" bgcolor="#000000" id="playerjxJRqLMFuJaA" name="playerjxJRqLMFuJaA" class="jwswf swfPrev-beforeswfanchor0 swfNext-afterswfanchor0" tabindex="0"> <param name="allowfullscreen" value="true"> <param name="allowscriptaccess" value="always"> <param name="seamlesstabbing" value="true"> <param name="wmode" value="opaque"> </object> <a id="afterswfanchor0" href="#playerjxJRqLMFuJaA" tabindex="0" title="Flash end" style="border:0;clip:rect(0 0 0 0);display:block;height:1px;margin:-1px;outline:none;overflow:hidden;padding:0;position:absolute;width:1px;" data-related-swf="playerjxJRqLMFuJaA"></a> <div id="playerjxJRqLMFuJaA_aspect" style="display: none;"> </div> <div id="playerjxJRqLMFuJaA_jwpsrv" style="position: absolute; top: 0px; z-index: 10;"><div class="afs_ads" style="width: 1px; height: 1px; position: absolute; background: transparent;">&nbsp; </div> </div> <script data-cfasync="false" type="text/javascript"> jwplayer('playerjxJRqLMFuJaA').setup({ file: 'http://proxy-031.dc3.dailymotion.com/sec(11eb80ed8bb344d448fb7eff4cafbe08)/video/754/581/309185457_mp4_h264_aac_hd_hfr.m3u8', file: 'http://proxy-031.dc3.dailymotion.com/sec(11eb80ed8bb344d448fb7eff4cafbe08)/video/754/581/309185457_mp4_h264_aac_hd_hfr.m3u8', aboutlink: 'http://skysports.com', controls: 'true', title: 'Football Live Streamings.Com', width: '100%', height: '490', stretching: 'uniform', autostart: 'true', primary: 'flash', skin: 'vapor', androidhls: 'true', }); </script> </body> 
0
source

All Articles