I would like star the video when user enter to the site, because they have to click on play button, there is a way to do this with javascript? i know autoplay is not avaible any more, but i need it.!! thanks
Please take a look at this document, some browsers allow autoplay if the video is muted - https://www.wowza.com/docs/use-autoplay-with-wowza-player
Hello, this is the way to autoplay a streaming with audio
WowzaPlayer.create(“playerElement”,
{
“license”: “your license”,
“sources”: [{
“sourceURL”: “your source”
},
{
“sourceURL”: “”
}],
“title”: “”,
“description”: “”,
“autoPlay”: true,
“mute”: true,
“volume”: 100
}
).mute(false);