Play RTPS video from URL. its working fine but try to record this Video Its possible to record video from Videoview.
String vidAddress = "rtsp://192.168.42.1/live";
Uri vidUri = Uri.parse(vidAddress);
VideoView vidView = (VideoView) findViewById(R.id.myVideo);
vidView.setVideoURI(vidUri);
vidView.start();