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.
我正在尝试制作一个可以获取直播相机视频的应用程序。我可以通过使用 1AVStreaming 程序从我的笔记本电脑上的 ip(例如 ip:176.33.226.53:8070)流式传输我的网络摄像头,但我无法在我的代码中访问流式视频。
媒体播放器可以直接使用 url 本身。
寻找类似的东西
Uri myUri = Uri.parse("http://your/video/file/path"); MediaPlayer player = new MediaPlayer(); player.setDataSource(context, myUri); player.prepare();
使用 MediaPlayer.OnPreparedListener 显示控件或启动视频它们是可用的各种示例。只是谷歌它