Tatsuhiko Miyagawa / WWW-NicoVideo-Download-0.01 - search.cpan.org中身はMooseを使ったモダンなコード。eg/fetch-video.plにそのまま使えそうなサンプルまで入っています。
http://search.cpan.org/~miyagawa/WWW-NicoVideo-Download-0.01/
サンプルではTerm::ProgressBarで進捗表示までされて至れり尽くせり。今日はちょっとだけ修正してファイル名をタイトルから名付ける様にしてみました。
といってもWWW::NicoVideo::Downloadではloginが単体で呼び出せられる様になっていますし、user_agentが得られるようになっているのでそれを同じくmiyagawaさん作のWeb::Scraperに渡しただけです。
#!/usr/bin/perl
use strict;
use warnings;
use Encode qw(encode decode_utf8);
use URI;
use Web::Scraper;
use WWW::NicoVideo::Download;
use Term::ProgressBar;
my($email, $password, $video_id) = @ARGV;
my($term, $fh);
my $client = WWW::NicoVideo::Download->new( email => $email, password => $password );
$client->login( $video_id );
my $helper = scraper { process '#subinfo img', title => '@alt' };
$helper->user_agent( $client->user_agent );
my $title = $helper->scrape(
URI->new("http://www.nicovideo.jp/watch/$video_id")
)->{title} || $video_id;
$title = encode("cp932", decode_utf8($title)) if $^O eq 'MSWin32';
$client->download($video_id, \&cb);
sub cb {
my($data, $res, $proto) = @_;
unless ($term && $fh) {
my $ext = (split '/', $res->header('Content-Type'))[-1] || "flv";
my $filename = "$title.$ext";
$filename =~ s![\\/|:<>"?*]!_!g;
open $fh, ">", $filename or die $!;
$term = Term::ProgressBar->new( $res->header('Content-Length') );
}
$term->update( $term->last_update + length $data );
print $fh $data;
}
うむ。便利便利。そういえばWEB+DB PRESS vol47買った。codereposの記事も面白かった。
WEB+DB PRESS Vol.47
高橋 徹, 遠藤 康裕, はまちや2, 正野 勇嗣, 前坂 徹, やまだ あきら, 笠谷 真也, 大沢 和宏, 縣 俊貴, ミック, 田中 洋一郎, 有賀 一輝, 石黒 尚久, 石室 元典, 長野 雅広, 池邉 智洋, 和田 正則, 下岡 秀幸, 伊藤 直也, nanto_vi, 武者 晶紀, 大塚 知洋, 山本 陽平, 高林 哲, 小飼 弾, WEB+DB PRESS編集部
技術評論社 大型本 / ¥350 (2008年10月23日)
発送可能時間:
高橋 徹, 遠藤 康裕, はまちや2, 正野 勇嗣, 前坂 徹, やまだ あきら, 笠谷 真也, 大沢 和宏, 縣 俊貴, ミック, 田中 洋一郎, 有賀 一輝, 石黒 尚久, 石室 元典, 長野 雅広, 池邉 智洋, 和田 正則, 下岡 秀幸, 伊藤 直也, nanto_vi, 武者 晶紀, 大塚 知洋, 山本 陽平, 高林 哲, 小飼 弾, WEB+DB PRESS編集部
技術評論社 大型本 / ¥350 (2008年10月23日)
発送可能時間:
追記
otsuneさんから、API叩いた方が仕様変更に強いとコメント頂きました。XML::Simple使ってタイトル取る様に修正しました。
#!/usr/bin/perl
use strict;
use warnings;
use Encode qw(encode decode_utf8);
use XML::Simple;
use WWW::NicoVideo::Download;
use Term::ProgressBar;
my($email, $password, $video_id) = @ARGV;
my($term, $fh);
my $client = WWW::NicoVideo::Download->new( email => $email, password => $password );
$client->login( $video_id );
my $res = $client->user_agent->get("http://www.nicovideo.jp/api/getthumbinfo?v=$video_id");
my $title = $video_id;
if ($res->is_success) {
my $xs = XML::Simple->new;
my $ref = $xs->XMLin($res->decoded_content);
$title = $ref->{thumb}->{title} || $video_id;
$title = encode("cp932", decode_utf8($title)) if $^O eq 'MSWin32';
}
$client->download($video_id, \&cb);
sub cb {
my($data, $res, $proto) = @_;
unless ($term && $fh) {
my $ext = (split '/', $res->header('Content-Type'))[-1] || "flv";
my $filename = "$title.$ext";
$filename =~ s![\\/|:<>"?*]!_!g;
open $fh, ">", $filename or die $!;
$term = Term::ProgressBar->new( $res->header('Content-Length') );
}
$term->update( $term->last_update + length $data );
print $fh $data;
}