I wish to play a simple video file (.mov or mp4) on my Android device via Unity. I have Unity 5.5.2 personal, and Movie Texture is not supported on Android.
I can run my video by placing it in the StreamingAssets folder and using this code:
void Start()
{
Handheld.PlayFullScreenMovie("myVid.mp4", Color.black,
FullScreenMovieControlMode.Minimal,FullScreenMovieScalingMode.None);
}
How to control to audio of the video by code?
How to change the video alpha (making it half transparent for example)?