如何获取 RTSP 链接 Android
我有 YouTube 链接,例如 http://www.youtube.com/v/YR71GnQ4CU4?f =videos&app=youtube_gdata ,那么如何转换为RTSP格式在VideoView中播放。
正在搜索 gdata api:http: //gdata.youtube.com/feeds/api/videos?&max-results=20&v=2&format=1&q="+ URLEncoder.encode(activity.criteria) 但我找不到如何获取相关的 RTSP url。
Am having you-tube links like http://www.youtube.com/v/YR71GnQ4CU4?f=videos&app=youtube_gdata , then how to convert it to RTSP format to play in VideoView.
Am searching gdata api with this: http://gdata.youtube.com/feeds/api/videos?&max-results=20&v=2&format=1&q="+ URLEncoder.encode(activity.criteria) but i cant find how to get related RTSP url.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我得到了我的答案..thanx
只有在gdata api中我们才得到这种类型的链接:
rtsp://v3.cache7.c.youtube.com/CiILENy73wIaGQlOCTh0GvUeYRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp< /code>
这些正在 VideoView 中播放。
I got my answer ..thanx to this
In gdata api only we are getting this type of links :
rtsp://v3.cache7.c.youtube.com/CiILENy73wIaGQlOCTh0GvUeYRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp
These are playing in VideoView.
这可能有点晚了。这是一些为遇到麻烦的人提供的工作代码。
This might be a little late. Here is some working code for people having trouble.
以下是可以为您获取 YouTube 视频的 RTSP 链接的函数
Below is the function which can get you RTSP link for the youtube video