Media player using YouTube?
I am developing a sample application using MediaPlayer .By using the raw resources folder,the video can be played.But I want to play through URL .How can I achieve this? My code is: VideoView videoView = (VideoView) findViewById(R.id.VideoView); MediaController mediaController = new MediaController(this); mediaController.setAnchorView(videoView); // Set video link (mp4 format ) Uri video = Uri.parse("http://www.youtube.com/watch?v=T1Wgp3mLa_E"); videoView.setMediaController(mediaController); videoView.setVideoURI(video); videoView.start(); bettlebrox You need to get the correct streaming(rtsp)