well most of the time buffering is just part of streaming... it's there so that a user will get a more seamless playback of the video/audio... The flipside is that it starts a little later because it has to buffer beforehand, and when it has enough data to play a specific amount of time seamlessly it will start.. Cutting out the buffering might mean frequent hickups during play... The first case might be acceptable for users (buffering) the second one definitely isn't (frequent hickups)...
On 12 apr, 05:33, Kelvin <[email protected]> wrote: > I have a question. > When I use the VideoView to play the RTSP streaming, the VideoView > will buffering some cache buffer. > Is there any method to tell the VideoView DON'T buffer? > > My code: > String VideoUri = "rtsp://192.168.5.121:6666/live/h264"; > mVideoView = (VideoView) findViewById(R.id.video_view); > mVideoView.setVideoURI(Uri.parse(VideoUri)); > mVideoView.start(); > > Is anybody help me? > Thanks. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

