Skip to content Skip to sidebar Skip to footer

Unity Play Video On Android

How do you make unity can run video through android ? Remember that unity video can not run into android. Or if there any asset package that can make unity video can run through A

Solution 1:

On most devices, you can use MovieTexture, but according to the docs,

Movie Textures are not supported on Android. Instead, full-screen streaming playback is provided using Handheld.PlayFullScreenMovie.

Here is the documentation this method.

If you have a budget, you can try Easy Movie Texture, currently priced at $65. I haven't used it myself, but it shows a video demo running on an Android device and the reviews all seem positive.

Hope that helps!

Solution 2:

You can use Handheld to play video:

string url; //Contains the path to your video
Handheld.PlayFullScreenMovie(url, Color.black, FullScreenMovieControlMode.CancelOnInput, FullScreenMovieScalingMode.Fill);

In order to get more info, check this

Post a Comment for "Unity Play Video On Android"