I have been successfully able to stream RTSP FILES( i.e videos stored on SDCARD having an extension .3gp,.mp3,.mp4 etc) But when I use the same code for streaming a URL such as : rtsp://122.166.229.151:1950/13478f6be4b133f ( without extension) the screen goes blank and after certain interval it says cannot play this video. I am using Samsung Galaxy 551 phone with 2.2 OS for testing. Kindly help
VideoView videoView = (VideoView) findViewById(R.id.tvvideoView);
MediaController mediaController = new MediaController(this);
mediaController.setAnchorView(videoView);
Uri video = Uri.parse(rtsp://122.166.229.151:1950/13478f6be4b133f);
videoView.setMediaController(mediaController);
videoView.setVideoURI(video);
videoView.start();
This is my code.