reset counter to 0 if it is less than 0 (negative numbers give errors) and print the label instace of id (so you get 720p instead of 720)
This commit is contained in:
parent
e9bf6bb063
commit
d1b4062bb3
1 changed files with 5 additions and 1 deletions
|
@ -102,6 +102,9 @@ if (!$ARGV[0]) {
|
||||||
|
|
||||||
sub search_video($$$) {
|
sub search_video($$$) {
|
||||||
my ($instance, $search_string, $counter) = @_;
|
my ($instance, $search_string, $counter) = @_;
|
||||||
|
if($counter < 0) {
|
||||||
|
$counter = 0;
|
||||||
|
}
|
||||||
my $response = $ua->get("$instance/api/v1/search/videos?search=$search_string&count=25&start=$counter");
|
my $response = $ua->get("$instance/api/v1/search/videos?search=$search_string&count=25&start=$counter");
|
||||||
if ($response->{_rc} == 200) {
|
if ($response->{_rc} == 200) {
|
||||||
return $response->content;
|
return $response->content;
|
||||||
|
@ -138,6 +141,7 @@ sub select_video($) {
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($prompt_input =~ /^:s/) {
|
} elsif ($prompt_input =~ /^:s/) {
|
||||||
$prompt_input =~ s/^:s //;
|
$prompt_input =~ s/^:s //;
|
||||||
|
$input = $prompt_input;
|
||||||
return -1;
|
return -1;
|
||||||
} elsif ($prompt_input =~ /^:i/) {
|
} elsif ($prompt_input =~ /^:i/) {
|
||||||
$config{instance} = $prompt_input;
|
$config{instance} = $prompt_input;
|
||||||
|
@ -157,7 +161,7 @@ sub get_video_data($) {
|
||||||
$json_obj->{name},
|
$json_obj->{name},
|
||||||
$json_obj->{description},
|
$json_obj->{description},
|
||||||
$json_obj->{account}->{name},
|
$json_obj->{account}->{name},
|
||||||
$json_obj->{files}->[$config{default_resolution}]->{resolution}->{id});
|
$json_obj->{files}->[$config{default_resolution}]->{resolution}->{label});
|
||||||
} else {
|
} else {
|
||||||
return "error\n";
|
return "error\n";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue