Uri uri = Uri.parse("http://64.250.238.26:1111/clips/Wailea.mp4");
videoView = (VideoView) findViewById(R.id.surface);
videoView.bringToFront();
videoView.setVideoURI(uri);
mediaController = new MediaController(this);
mediaController.setAnchorView(videoView);
videoView.setMediaController(mediaController);
videoView.requestFocus();
videoView.start();
Hello all , i am using this code for a video streaming of the application, In the same i am able to stream the required video but the video does not gets displayed on to my device or simulator. I believe that there would be some issues with the video API being used but am unable to check it out... It will be of great help if you share yours views on the above lines of code.
Thanks