如何使用perl获取视频信息?

发布于 2024-10-24 13:02:33 字数 221 浏览 1 评论 0原文

  1. 验证是否获取了输入 url
  2. 获取 url
  3. 查看 url 是否被重定向
  4. 获取元标记作为键值对
  5. 列表
  6. 获取视频标记作为下一个建议视频的

url我尝试了 Video::Info ,它提供了一般信息。但是我不知道如何获取诸如是否重定向、标签和下一个视频之类的信息。任何帮助表示赞赏。

谢谢

  1. Verify whether the input url was obtained
  2. get the url
  3. see if the url was redirected
  4. get meta tags as key-value pairs
  5. get video tags as a list
  6. url of the next suggested video

I tried Video::Info which provides the general information. However I don't know how to get things like whether it is redirected or not, the tags and the next video. Any help is appreciated.

thanks

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

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

发布评论

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

评论(1

苍白女子 2024-10-31 13:02:33

看一下 CGI 模块。也许这会让您开始了解一般流程:

#!/usr/bin/perl

use strict;
use warnings;
use Data::Dumper;
use CGI;

my $cgi = CGI->new('metadata=abc&nextVideo=efg&foo=bar&blah=etc');
my @URLQueryKeys = $cgi->param;

foreach my $URLQueryKey (@URLQueryKeys) { 
    print Dumper $URLQueryKey;
    print Dumper $cgi->param($URLQueryKey);
}

Take a look at the CGI module. Perhaps this will get you started with the general process:

#!/usr/bin/perl

use strict;
use warnings;
use Data::Dumper;
use CGI;

my $cgi = CGI->new('metadata=abc&nextVideo=efg&foo=bar&blah=etc');
my @URLQueryKeys = $cgi->param;

foreach my $URLQueryKey (@URLQueryKeys) { 
    print Dumper $URLQueryKey;
    print Dumper $cgi->param($URLQueryKey);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文