作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试播放 RTSP 直播流媒体网址“rtsp://164.100.51.207/broadcast/DDLive”。但我收到此错误 (1,-1)。
我正在尝试这段代码
VideoView myVideoView = (VideoView) findViewById(R.id.videoPlayer);
myVideoView.setVideoURI(Uri.parse(url.toString()));
myVideoView.setMediaController(new MediaController(this));
myVideoView.requestFocus();
myVideoView.start();
此代码给出错误 (1,-1)。我无法播放此链接。如果有人告诉我播放此网址的想法。
认为。
最佳答案
回旋处建议 -
下面的片段应该可以播放下载的内容。
new Intent(Intent.ACTION_VIEW).setDataAndType(Uri.parse("file:///mnt/sdcard/myfile.mp4"), "video/mp4");
Android 链接上的 VLC: http://forum.xda-developers.com/showthread.php?t=1517415 http://code.google.com/p/android-vlc-remote/source/browse/AndroidManifest.xml
从任何 youtube 视频获取 rtsp 链接 - 稍微复杂的过程
如果您执行以下操作,您几乎可以将任何 YouTube 视频流式传输为 RTSP:
详细信息:
http://snipplr.com/view/63341/youtube-rtsp-cli-request--audio-track-only-p2/
http://snipplr.com/view/57846/curl--rtsp-to-get-sdp-descriptor-for-media-stream/
关于live - 如何在安卓中播放 RTSP[live streaming] 链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9634871/
我是一名优秀的程序员,十分优秀!