Play Remove Video - StansAssets/com.stansassets.ultimate-mobile GitHub Wiki
The ShowRemoteVideo method will open full-screen video player and will automatically play the video by a given URL. See the snippet below:
using SA.CrossPlatform.Media;
...
var movieURL = "https://videocdn.bodybuilding.com/video/mp4/62000/62792m.mp4";
UM_MediaPlayer.ShowRemoteVideo(movieURL, () => {
Debug.Log("Video closed");
});