Below is the code that I have used to play video in native video player. But I am not getting any default control like stop, pause, play.
What I am missing over here? If my code is wrong then what is the right code for that?
vc = VideoComponent.createVideoPeer("http://localhost/test.mp4");
vc.setFullScreen(true);
player = (Player) vc.getNativePeer();
player.realize();
addComponent(vc);
vc.start();