Good day. I decided to organize live video broadcasts from several devices, somehow I came to the conclusion that this should be done with the help of hls, everything works, everything is fine. I decided to take them out on the web and take them out. Long digging one way or another chose jwplayer. I registered, got the key, downloaded it, threw it on the server, created an html page. The result - DOES NOT WORK , whatever address hls I put in, the result is one - LIFE PAIN! In general, I killed a lot of time and did not find a mistake, dear stackoverflow users help solve my problem, please tell me what I am doing wrong and direct it to the true path. Suppose we have the following link hls: http://esioslive6-i.akamaihd.net/hls/live/202892/AL_P_ESP1_FR_FRA/playlist.m3u8 I checked at https://www.hlsplayer.net/ , everything works. And here is my demonstrative html page

<!DOCTYPE> <html> <head> <!-- ссылка на плеер, взял с сайта --> <script src='https://content.jwplatform.com/libraries/7XBRYUMN.js'></script> <!-- мой ключ --> <script>jwplayer.key="***";</script> </head> <body> <div id="my-video"></div> <script type="text/javascript"> jwplayer("my-video").setup({ file: "http://esioslive6-i.akamaihd.net/hls/live/202892/AL_P_ESP1_FR_FRA/playlist.m3u8", width: 400, height: 240, title: "клип", hlshtml: true, type: "hls", androidhls: true }); </script> </body> </html> 

If the player is downloaded from the site and connected, the result is the same. I tried to download old versions of the player, the result is the same. I tried to use this article here, http://rugraphics.ru/forvideo/besplatnyy-jw-player-dlya-sayta the result is similar = (It seems that the jw player does not support hls, but I found this page http: // demo. jwplayer.com/stream-tester/ and made sure that he should do it!

    1 answer 1

    Well, you are nagged. First, the script that you call the player is actually a complete embed script that creates a pre-defined player with a pre-defined key, and so on. The key is free there by the way, so it does not support the hls format (you need premium or higher). Further, the key that you specify below, the player does not accept, because a single line embed player is looking for a key from another location.

    I would recommend writing to support@jwplayer.com, there are very kind people sitting there who will be happy to help you.