You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
main::logger "WARNING: avconv does not support conversion of hvf downloads to MP4 - not converting .ts file\n";
6437
6435
$opt->{raw} = 1;
6438
-
} elsif ( $opt->{ffmpegxx} ) {
6436
+
} elsif ( $opt->{myffmpegxx} ) {
6439
6437
main::logger "WARNING: Unable to determine ffmpeg version - MP4 conversion for hvf downloads may fail\n";
6440
-
} elsif ( ! $opt->{ffmpeg25} ) {
6441
-
main::logger "WARNING: Your version of ffmpeg ($opt->{ffmpegversion}) does not support conversion of hvf downloads to MP4 - not converting .ts file\n";
6438
+
} elsif ( ! $opt->{myffmpeg25} ) {
6439
+
main::logger "WARNING: Your version of ffmpeg ($opt->{myffmpegversion}) does not support conversion of hvf downloads to MP4 - not converting .ts file\n";
6442
6440
$opt->{raw} = 1;
6443
6441
}
6444
-
if ( $opt->{ffmpegav} || $opt->{ffmpegxx} || ! $opt->{ffmpeg25} ) {
6442
+
if ( $opt->{myffmpegav} || $opt->{myffmpegxx} || ! $opt->{myffmpeg25} ) {
6445
6443
main::logger "WARNING: ffmpeg 2.5 or higher is required to convert hvf downloads to MP4\n";
6446
6444
main::logger "WARNING: Use --raw to bypass MP4 conversion and retain .ts file\n";
6447
6445
main::logger "WARNING: Use --ffmpeg-force to override checks and force MP4 conversion attempt\n";
@@ -6454,16 +6452,16 @@ sub download {
6454
6452
}
6455
6453
# cannot convert dvf with avconv or ffmpeg < 3.0
6456
6454
if ( $mode =~ /^dvf/ && ! $opt->{raw} ) {
6457
-
if ( $opt->{ffmpegav} ) {
6455
+
if ( $opt->{myffmpegav} ) {
6458
6456
main::logger "WARNING: avconv does not support conversion of dvf downloads to MP4 - not converting .m4a and .m4v files\n";
6459
6457
$opt->{raw} = 1;
6460
-
} elsif ( $opt->{ffmpegxx} ) {
6458
+
} elsif ( $opt->{myffmpegxx} ) {
6461
6459
main::logger "WARNING: Unable to determine ffmpeg version - MP4 conversion for dvf downloads may fail\n";
6462
-
} elsif ( ! $opt->{ffmpeg30} ) {
6463
-
main::logger "WARNING: Your version of ffmpeg ($opt->{ffmpegversion}) does not support conversion of dvf downloads to MP4 - not converting .m4a and .m4v files\n";
6460
+
} elsif ( ! $opt->{myffmpeg30} ) {
6461
+
main::logger "WARNING: Your version of ffmpeg ($opt->{myffmpegversion}) does not support conversion of dvf downloads to MP4 - not converting .m4a and .m4v files\n";
6464
6462
$opt->{raw} = 1;
6465
6463
}
6466
-
if ( $opt->{ffmpegav} || $opt->{ffmpegxx} || ! $opt->{ffmpeg30} ) {
6464
+
if ( $opt->{myffmpegav} || $opt->{myffmpegxx} || ! $opt->{myffmpeg30} ) {
6467
6465
main::logger "WARNING: ffmpeg 3.0 or higher is required to convert dvf downloads to MP4\n";
6468
6466
main::logger "WARNING: Use --raw to bypass MP4 conversion and retain .m4a and .m4v files\n";
6469
6467
main::logger "WARNING: Use --ffmpeg-force to override checks and force MP4 conversion attempt\n";
@@ -7799,12 +7797,13 @@ sub run {
7799
7797
main::print_divider;
7800
7798
# Clear then Load options for specified pvr search name
0 commit comments