标签: android rtsp live-streaming
我想创建一个Android应用程序,我想在其中显示来自ip camera的rtsp直播。我尝试使用Mediaplayer api,但它显示错误。如果有人可以帮忙吗?
答案 0 :(得分:0)
试试这个
Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse(url)); i.setType("video/*"); startActivity(i);