Perl - 下载 Flash 视频
我尝试从此下载视频链接 使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对我来说,这似乎在 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.