I am developing a youtube player in android. I get the correct rtsp url. But still the video does not play. Please help me find a solution.
Thanks in advance
Here is my code
String youtubeURL="rtsp://v6.cache4.c.youtube.com/CigLENy73wIaHwmh5W2TKCuN2RMYDSANFEgGUgx1c2VyX3VwbG9hZHMM/0/0/0/video.3gp"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_online_video_player); videoView = (VideoView) findViewById(R.id.video_View); progressDialog = ProgressDialog.show(OnlineVideoPlayer.this, "", "Buffering video...",true); progressDialog.setCancelable(false); PlayVideo(); } private void PlayVideo() { try { final VideoView videoView =(VideoView)findViewById(R.id.video_View);
android youtube video
varghesekutty
source share