在 Perl 中获取 iPhone 用于 YouTube 视频的视频链接
我想用 Perl 从 Youtube 下载视频。具体来说,我想下载与 iPhone Youtube 应用程序下载的视频版本相同的版本。我正在测试在 iPhone 上获取 YouTube 视频,因此我想使用 Perl 在桌面上尽可能地模拟这一点。我可以使用什么库,应该访问什么 URL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
移动设备使用 RTSP 链接.com/apis/youtube/2.0/developers_guide_protocol.html" rel="nofollow">YouTube GData Feed。具体来说,您想要查找以下
格式
1或6,这是RTSP格式。如果您想获取特定视频的信息,则获取该视频的 Feed(您可以从中获取 RTSP 链接)的链接为:
其中
替换为视频的 id。Mobile devices use the RTSP links provided in the YouTube GData feeds. Specifically, you want to look for a
format
of 1 or 6, which are the RTSP formats.If you want to get the information for a specific video, the link to get the feed for that video (from which you would get the RTSP link from) is:
Where
<videoId>
is replaced with the id of the video.