From fab2687a5ba119aeb7daf75f9fe621718a54f9a5 Mon Sep 17 00:00:00 2001 From: qorg11 Date: Mon, 8 Nov 2021 15:14:39 +0100 Subject: [PATCH] Apparently fixed but mpv takes a while to load --- peertube-cli.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/peertube-cli.pl b/peertube-cli.pl index 9fb7ca5..daf27ef 100755 --- a/peertube-cli.pl +++ b/peertube-cli.pl @@ -160,12 +160,11 @@ sub get_video_data($) { $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}, + return ($json_obj->{streamingPlaylists}->[0]->{files}->[0]->{fileDownloadUrl}, $json_obj->{name}, $json_obj->{description}, $json_obj->{account}->{name}, - $json_obj->{files}->[$config{default_resolution}]->{resolution}->{label}); - + $json_obj->{streamingPlaylists}->[0]->{files}->[$config{resolution}]->{resolution}->{label}) } } else { return "error\n";