You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Media video = MediaManager.createMedia(videoPath, true);
video.setNativePlayerMode(true); // this works nicely on iOS 12, I didn't test other iOS versions yet
video.prepare();
video.setFullScreen(true);
video.play();
The play method actually doesn't start to play the video on iOS: it opens the video, but keeps it paused. I suppose that this code doesn't implement an autoplay. Is there any chance to have an autoplay with iOS and with .setNativePlayerMode(true)? If is it a missing feature, can you add it please?
The text was updated successfully, but these errors were encountered:
Please consider this code:
The
play
method actually doesn't start to play the video on iOS: it opens the video, but keeps it paused. I suppose that this code doesn't implement an autoplay. Is there any chance to have an autoplay with iOS and with.setNativePlayerMode(true)
? If is it a missing feature, can you add it please?The text was updated successfully, but these errors were encountered: