It’s possible to change the player id “wowza_player”?
I use this code from my wowza cloud, but i want to use more than one player on one page. So i need the possibility to rename the id.
script id=“player_embed” src="//player.cloud.wowza.com/hosted/xxxxxxx/wowza.js" type=“text/javascript”
Thank you!
Bests
I also want to change the player id but I do not know how to do this, I have searched many sites then https://hpsupports.co/hp-support-canada/ suggest me for this forum for the solution. So, can anyone tell me the procedure to change the change the player id?
Checking into it for you @Joerg Blaumeiser…
You can try this @Bean Smith:
<!DOCTYPE html>
<html>
<head>
<title>Test Page</title>
<script type="text/javascript" src="//player.wowza.com/player/latest/wowzaplayer.min.js"></script>
</head>
<body>
<div id="playerElement" style="width:640px; height:360px; padding:0"></div>
<div id="playerElement2" style="width:640px; height:360px; padding:0"></div>
</body>
<script type="text/javascript">
WowzaPlayer.create('playerElement',
{
"license":"license key",
"title":"",
"description":"",
"sourceURL":"example source",
"autoPlay":false,
"volume":"75",
"mute":false,
"loop":false,
"audioOnly":false,
"uiShowQuickRewind":true,
"uiQuickRewindSeconds":"30"
}
);
</script>
<script type="text/javascript">
WowzaPlayer.create('playerElement2',
{
"license":"license key",
"title":"",
"description":"",
"sourceURL":"exmaple sourceURL",
"autoPlay":false,
"volume":"75",
"mute":false,
"loop":false,
"audioOnly":false,
"uiShowQuickRewind":true,
"uiQuickRewindSeconds":"30"
}
);
</script>
</html>
You can find this resource code on this doc: (Scroll down to the “how to add more than one player” section of page.)
https://www.wowza.com/docs/getting-started-with-wowza-player