- or download this
my $frametotal,$fwide,$fhigh;
- or download this
my ( $frametotal, $fwide, $fhigh );
- or download this
@vcmd=(@vcmd,"-vf","scale=min(1280\\,iw):-1");
- or download this
push @vcmd, "-vf", "scale=min(1280\\,iw):-1";
- or download this
if($a eq "progress") {
my $pcent=$prog{"frame"}/$frametotal*100;
...
$bar .=sprintf("%.2f",$pcent)."% fps=".$prog{"fps"};
print "\r$bar";
}
- or download this
next if $x ne 'progress';
my $pcent = $prog{ frame } / $frametotal * 100;
printf '%s[%-50s ] %.2f%% fps=%s', "\r", '#' x int( $pcent / 2 ),
+$pcent, $prog{ fps };