我正在使用以下代码播放.3gp格式的视频,但它工作正常但我在播放.sdp网址时遇到问题。
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setData(Uri.parse("rtsp://stream.the.sk/live/musicbox/musicbox-3m.3gp"));
startActivity(intent);
我需要播放rtsp://ss1c6.idc.mundu.tv:554/prf0/cid_29.sdp
格式但不起作用。请帮我。我尝试使用 VLC 和 MX Player 进行播放。
答案 0 :(得分:0)
在onCreate函数中尝试此代码。它会起作用。
VideoView view=new VideoView(this);
setContentView(view);
view.setMediaController(mediaController);
view.setVideoURI(Uri.parse("rtsp://ss1c6.idc.mundu.tv:554/prf0/cid_29.sdp"));
view.start();