Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想制作一个 android 应用程序,我想在其中显示来自 ip camera 的 rtsp 实时流。我尝试使用 Mediaplayer api,但它显示错误。如果有人可以帮忙吗?
尝试这个
Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse(url)); i.setType("video/*"); startActivity(i);