Video publishing and playback on mobile devices¶
Common rules¶
Mobile browser requires user action (button click) when starting to publish or play a media stream on mobile device. Also, audio must be muted in HTML5 video tag:
When playing a stream, audio can be unmuted by user action only.
To workaround this, since WebSDK build 2.0.212 stream publishing or playback should be started on mobile device by the following rules:
-
If Websocket connection is already established, and a separate button is used to start publishing or playback (Publish/Play button which user clicks), no additional actions required in application code
-
If Websocket connection is establishing by button click, then publishing/playback starts by
SESSION_STATUS.ESTABLISHED
event, it is necessary to useplayFirstVideo()
function for publishing (code)and playback (code)if (Browser.isSafariWebRTC()) { Flashphoner.playFirstVideo(localVideo, true, PRELOADER_URL).then(function() { publishStream(); }); return; }
Theif (Flashphoner.getMediaProviders()[0] === "WSPlayer") { ... } else if (Browser.isSafariWebRTC() || Flashphoner.getMediaProviders()[0] === "MSE") { Flashphoner.playFirstVideo(remoteVideo, false, PRELOADER_URL).then(function () { playStream(); }); return; }
playFirstVideo
function returns a Promise, which is resolved if a test video fragment was successfully played in video element byPRELOADER_URL
. -
If Websocket connection is establishing on page load, then playback starts by
SESSION_STATUS.ESTABLISHED
event (autoplay), it is necessary to useplayFirstVideo
and disable automatic unmute when stream is created (code)
Stream publishing and playback in Low Power Mode¶
In Low Power Mode on iOS devices, user action is mandatory to publish or play media stream. Autoplay does not work in this mode. Use the function playFirstVideo
to detect Low Power Mode: a Promise returned by the function will be rejected
(code)
if (Browser.isSafariWebRTC()) {
Flashphoner.playFirstVideo(pDisplay, false, PRELOADER_URL).then(function() {
playStream(participant, pDisplay);
}).catch(function (error) {
// Low Power Mode detected, user action is needed to start playback in this mode
console.log("Can't atomatically play participant" + participant.name() + " stream, use Play button");
onParticipantStopped(participant);
});
}