Perl - 下载 Flash 视频

发布于 2024-11-27 10:32:50 字数 778 浏览 0 评论 0原文

我尝试从此下载视频链接 使用 Perl 脚本。但问题是我下载后无法播放视频。这是我的脚本

my $ua = LWP::UserAgent->new;
open(FILE, '>Test.flv');
binmode (FILE); 

    my $resp = $ua->get( $url
                    ) or die;               

    if ( $resp->is_success) 
    {
        print FILE $resp->content;
        close(FILE);
    }
    else
    {
        print "Failed\n";
    }

请让我知道代码有什么问题。提前致谢。

I trying to downloaded video from this link using the Perl script. But the problem I unable to play the video after downloading. Here is my script

my $ua = LWP::UserAgent->new;
open(FILE, '>Test.flv');
binmode (FILE); 

    my $resp = $ua->get( $url
                    ) or die;               

    if ( $resp->is_success) 
    {
        print FILE $resp->content;
        close(FILE);
    }
    else
    {
        print "Failed\n";
    }

Please let me know whats wrong with the code. Thanks in advance.

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

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

发布评论

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

评论(1

泪之魂 2024-12-04 10:32:50

对我来说,这似乎在 Firefox 中也不起作用,所以我猜链接有问题。你的程序对我来说看起来不错,尽管使用 LWP::Simple 会让事情变得更简单。

For me, this doesn't seem to work in firefox either, so I guess there's something wrong with the link. Your program looks OK to me, though using LWP::Simple would make thing a bit more trivial.

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