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の記事も面白かった。
追記
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;
}