在Android应用中显示rtsp流

时间:2013-09-13 09:30:11

标签: android rtsp live-streaming

我想创建一个Android应用程序,我想在其中显示来自ip camera的rtsp直播。我尝试使用Mediaplayer api,但它显示错误。如果有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

试试这个

        Intent i = new Intent(Intent.ACTION_VIEW);
        i.setData(Uri.parse(url));
        i.setType("video/*");
        startActivity(i);