Execute HTTP content in modal, in https page

3

I have a page that uses link , and in content it has a link that opens a modal .

The modal content is a streaming player, which only runs on link , and is not working.

Script executed by modal:

<script type="text/javascript" src="//player.wowza.com/player/latest/wowzaplayer.min.js"></script>
<div id="playerElement" style="width:100%; height:0; padding:0 0 56.25% 0"></div>
<script type="text/javascript">
WowzaPlayer.create('playerElement',
{
"license":"xxxxxx",
"title":"",
"description":"",
"sourceURL":"http%xxxx%xxxxxxx%xxxxxx%xxxxxx%xxxx.m3u8",
"autoPlay":true,
"volume":"75",
"mute":false,
"loop":false,
"audioOnly":false,
"uiShowQuickRewind":true,
"uiQuickRewindSeconds":"30"
}
);
</script>
  • Is it possible to run this content that requires link ?
  • Is not loading because you are on a https page ?
asked by anonymous 16.07.2018 / 17:27

0 answers