trying to fix videos that don't play (according to Chocobozzz in irc this happens because

these videos have no webtorrent file. And they don't seem to play well enough in mpv but it works for some reason in vlc)
This commit is contained in:
qorg11 2021-11-08 15:05:41 +01:00
parent e3b03cc592
commit 71209f7156
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -44,7 +44,7 @@ GetOptions(
"player=s" => \$config{player}
);
# Main program
while (1) {
if (!$ARGV[0]) {
my $response;
my $uuid = -1;
@ -88,6 +88,7 @@ if (!$ARGV[0]) {
}
}
# Functions
sub search_video($$$) {
@ -152,11 +153,20 @@ sub get_video_data($) {
if ($response->{_rc} == 200) {
my $json_obj = $json->decode($response->content);
if ($json_obj->{files}->[$config{default_resolution}]->{fileUrl}) {
return ($json_obj->{files}->[$config{default_resolution}]->{fileUrl},
$json_obj->{name},
$json_obj->{description},
$json_obj->{account}->{name},
$json_obj->{files}->[$config{default_resolution}]->{resolution}->{label});
} else { # For some reason, vlc seems to work better with this kind of videos.
return ($json_obj->{streamingPlaylists}->[0]->{files}->[0]->{fileUrl},
$json_obj->{name},
$json_obj->{description},
$json_obj->{account}->{name},
$json_obj->{files}->[$config{default_resolution}]->{resolution}->{label});
}
} else {
return "error\n";
}
@ -165,6 +175,7 @@ sub get_video_data($) {
sub play_video($) {
my $ref = $_[0];
my ($url, $title, $description, $author, $resolution) = @$ref;
print $url . "\n\n";
print "Video title: $title\n";
print "Description: $description\n\n";
print "Video author: $author\n";