-
Hello, I'm working on a webinar project and one of the feature is the availability to start and stop again and again the webinar. The live video is streamed using AWS medialive and mediapackage solution. When a medialive channel is stopped, then the mediapackage channel stop streaming by adding Here an example of the last manifest received:
We are looking for a solution to tell videojs that the streaming is live again and refresh itself, load the manifest again and resume streaming. We tried several solution but no one work:
One solution can work but is not graceful is to dispose the player and recreate one from scratch. Obviously the user will see the player disappear and then appear again like if there is a glitch in the interface. If someone have an idea to do this gracefully it should be great. Thanks for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Does setting the source back in the player not work? For example |
Beta Was this translation helpful? Give feedback.
Does setting the source back in the player not work? For example
player.src(player.currentSource())
.