我有一个 RTSP 源,我想在我的 android 应用程序上播放它,但它播放 2 或 3 分钟并且不能播放更长时间:(
我怎样才能玩得更久?
// there is my code to play, thanks for advice!
// videoview is my VideoView on layout
videoview.setVideoURI(Uri.parse("rtsp://192.168.0.119/Bolt.ts"));
videoview.setMediaController(new MediaController(this));
videoview.requestFocus();
videoview.start();
感谢您的帮助!