在 Perl 中获取 iPhone 用于 YouTube 视频的视频链接

发布于 2024-12-18 11:24:52 字数 149 浏览 0 评论 0 原文

我想用 Perl 从 Youtube 下载视频。具体来说,我想下载与 iPhone Youtube 应用程序下载的视频版本相同的版本。我正在测试在 iPhone 上获取 YouTube 视频,因此我想使用 Perl 在桌面上尽可能地模拟这一点。我可以使用什么库,应该访问什么 URL?

I want to download a video from Youtube in Perl. Specifically, I want to download the same version of the video that the iPhone Youtube application would download. I am testing getting YouTube videos on iPhone, so I would like to simulate this as closely as possible on a desktop, using Perl. What library can I use, and what URL should I access?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不念旧人 2024-12-25 11:24:52

移动设备使用 RTSP 链接.com/apis/youtube/2.0/developers_guide_protocol.html" rel="nofollow">YouTube GData Feed。具体来说,您想要查找以下格式 1或6,这是RTSP格式

如果您想获取特定视频的信息,则获取该视频的 Feed(您可以从中获取 RTSP 链接)的链接为:

http://gdata.youtube.com/feeds/api/videos/<videoId>?v=2

其中 替换为视频的 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:

http://gdata.youtube.com/feeds/api/videos/<videoId>?v=2

Where <videoId> is replaced with the id of the video.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文