App-get_flash_videos
view release on metacpan or search on metacpan
get_flash_videos view on Meta::CPAN
our %opt;
BEGIN {
my $player = "mplayer -really-quiet";
# We have special handling for "VLC" on Windows
$player = "VLC" if $^O =~ /MSWin/i;
# On OSX we default to open, if mplayer isn't available
$player = "open" if $^O =~ /darwin/ && !is_program_on_path("mplayer");
if(is_program_on_path("xdg-open") && !is_program_on_path("mplayer")) {
# If mplayer isn't available, but xdg-open is, use that.
$player = "xdg-open";
} elsif(is_program_on_path("gnome-open") && !is_program_on_path("mplayer")) {
# Alternatively try gnome-open..
$player = "gnome-open";
} elsif(is_program_on_path("kde-open") && !is_program_on_path("mplayer")) {
# Alternatively try kde-open..
$player = "kde-open";
}
%opt = (
yes => 0,
filename => '',
version => 0,
update => 0,
play => 0,
player => $player,
proxy => '',
debug => 0,
quiet => 0,
quality => "high",
subtitles => 0,
);
}
use constant VER_INFO => <<EOF;
get_flash_videos version $VERSION (http://code.google.com/p/get-flash-videos/)
EOF
use constant USAGE => VER_INFO . <<EOF;
Usage: $0 [OPTION]... URL...
$0 [OPTION]... search string
Downloads videos from the web pages given in URL or searches Google Video
Search for 'search string'. If the URL contains characters such as '&' you
will need to quote it.
Options:
--add-plugin Add a plugin from a URL.
-d --debug Print extra debugging information.
-f --filename Filename to save the video as.
-p --play Start playing the video once enough has been downloaded.
--player Player to use for the video (default: $opt{player}).
--proxy Proxy to use, use host:port for SOCKS, or URL for HTTP.
--subtitles Download subtitles where available.
-q --quiet Be quiet (only print errors).
-r --quality Quality to download at (high|medium|low, or site specific).
-u --update Update to latest version.
-v --version Print version.
-y --yes Say yes to any questions (don't prompt for any information).
EOF
use constant REQ_INFO => <<EOF;
A required Perl module for downloading this video is not installed.
EOF
use constant FRIENDLY_FAILURE => <<EOF;
Couldn't extract Flash movie URL. This site may need specific support adding,
or fixing.
Please confirm the site is using Flash video and if you have Flash available
check that the URL really works(!).
Check for updates by running: $0 --update
If the latest version does not support this please open a bug (or
contribute a patch!) at http://code.google.com/p/get-flash-videos/
make sure you include the output with --debug enabled.
EOF
read_conf();
GetOptions(
"yes|y" => \$opt{yes},
"filename|f=s" => \$opt{filename},
"version|v" => \$opt{version},
"update|u" => \$opt{update},
"help|h" => \$opt{help},
"play|p" => \$opt{play},
"player=s" => \$opt{player},
"proxy=s" => \$opt{proxy},
"debug|d" => \$opt{debug},
"quiet|q" => \$opt{quiet},
"add-plugin=s" => \$opt{add_plugin},
"quality|r=s" => \$opt{quality},
"subtitles" => \$opt{subtitles},
) or die "Try $0 --help for more information.\n";
if($opt{version}) {
die VER_INFO;
} elsif($opt{update}) {
exit update();
} elsif($opt{help}) {
die USAGE;
} elsif($opt{add_plugin}) {
exit add_plugin($opt{add_plugin});
}
if ($opt{debug}) {
if(my @plugins = get_installed_plugins()) {
debug @plugins . " plugin" . (@plugins != 1 && "s") . " installed:";
debug "- $_" for @plugins;
} else {
debug "No plugins installed";
}
}
( run in 3.110 seconds using v1.01-cache-2.11-cpan-ad19def0cd9 )