Android Question Recommended Video Player

wonder

Expert
Licensed User
Longtime User
As I am totally new to media-player libraries, I'd like to hear from you on what would be the best choice for playing a full-screen, no user controls, mp4 file.

Context: I want to play an intro scene before the game level starts.
There should be no play/pause/stop buttons visible on screen at any time.
There should be no buffering/playing/loading messages of any kind at any time.
Just the video, full-screen, nothing else.
 

aidymp

Well-Known Member
Licensed User
Longtime User
As I am totally new to media-player libraries, I'd like to hear from you on what would be the best choice for playing a full-screen, no user controls, mp4 file.

Context: I want to play an intro scene before the game level starts.
There should be no play/pause/stop buttons visible on screen at any time.
There should be no buffering/playing/loading messages of any kind at any time.
Just the video, full-screen, nothing else.

I use the vitamio one (currently version 5, but i'm sure the old one will do it also), as it has a seperate media control you can just .enabled=false .visable=false on the controller. I think a few others have a separate controller too, so maybe you can do the same with those!

Thanks

Aidy
 
Upvote 0

moster67

Expert
Licensed User
Longtime User
Why don't you use just the standard videoview in the audio-library? It should fulfill your needs.
 
Upvote 0
Top