我正在尝试将视频从wowza传输到android。我尝试设置mediaplayer()和路径"rtsp://184.72.239.149/vod/mp4:BigBuckBunny_175k.mov",但没有成功。我明白了:
artspconnection:服务器意外关闭了连接。
有什么我能解决的建议吗?

最佳答案

这就是我们需要从沃扎流出来的方式:

String SrcPath ="rtsp://184.72.239.149/vod/mp4:BigBuckBunny_115k.mov";

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    VideoView myVideoView = (VideoView)findViewById(R.id.myvideoview);
    myVideoView.setVideoURI(Uri.parse(SrcPath));
    Log.i("parse path",Uri.parse(SrcPath)+"");
    myVideoView.setMediaController(new MediaController(this));
    myVideoView.requestFocus();
    myVideoView.start();}

但在此之前,请将“bigbuckbunny”视频文件复制到wowza设置中的“vod”文件夹。

10-05 21:15