Tring to bugfix
This commit is contained in:
parent
7d59a23052
commit
670731eddf
3 changed files with 9 additions and 4 deletions
2
.ptclirc
2
.ptclirc
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
# This is just a perl hash.
|
# This is just a perl hash.
|
||||||
|
|
||||||
our %config;
|
|
||||||
|
|
||||||
# Default video player
|
# Default video player
|
||||||
|
|
||||||
$config{player} = "mpv";
|
$config{player} = "mpv";
|
||||||
|
|
0
doc/peertube-cli.1
Normal file
0
doc/peertube-cli.1
Normal file
|
@ -10,11 +10,16 @@ use Term::ReadLine;
|
||||||
use Term::ANSIColor;
|
use Term::ANSIColor;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
use Time::Seconds;
|
use Time::Seconds;
|
||||||
|
use warnings;
|
||||||
|
use strict;
|
||||||
|
|
||||||
|
our %config;
|
||||||
|
|
||||||
# Objects
|
# Objects
|
||||||
|
|
||||||
my $json = new JSON;
|
my $json = new JSON;
|
||||||
my $ua = new LWP::UserAgent;
|
my $ua = new LWP::UserAgent;
|
||||||
|
$ua->agent("curl");
|
||||||
my $term = new Term::ReadLine("ptcli");
|
my $term = new Term::ReadLine("ptcli");
|
||||||
my $time = new Time::Seconds;
|
my $time = new Time::Seconds;
|
||||||
|
|
||||||
|
@ -62,6 +67,9 @@ if (!$ARGV[0]) {
|
||||||
my @selected_video_data;
|
my @selected_video_data;
|
||||||
while($uuid == -1) {
|
while($uuid == -1) {
|
||||||
$response = search_video(join("",@ARGV), $counter);
|
$response = search_video(join("",@ARGV), $counter);
|
||||||
|
if($response == -1) {
|
||||||
|
print colored['bold red'], "ERROR\n";
|
||||||
|
}
|
||||||
my $json_obj = $json->decode($response);
|
my $json_obj = $json->decode($response);
|
||||||
$uuid = &select_video($json_obj);
|
$uuid = &select_video($json_obj);
|
||||||
@selected_video_data = get_video_data($uuid);
|
@selected_video_data = get_video_data($uuid);
|
||||||
|
@ -78,8 +86,7 @@ sub search_video($$) {
|
||||||
if ($response->{_rc} == 200) {
|
if ($response->{_rc} == 200) {
|
||||||
return $response->content;
|
return $response->content;
|
||||||
} else {
|
} else {
|
||||||
print color('red');
|
return $response->{_rc};
|
||||||
return sprintf("ERROR: server returned status code $response->{_rc}\n");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue