Created
March 22, 2019 21:24
-
-
Save fredmajor/d478b6a2a1e2537a6a82ca904d7cb725 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use File::Basename; | |
use Cwd 'abs_path'; | |
use 5.014; | |
use strict; | |
use warnings; | |
use utf8; | |
my $TARGET_WIDTH="640"; | |
my $TARGET_EXT=".mov"; | |
my $SUFFIX="_PRORES_PROX" . "_W_" . $TARGET_WIDTH.$TARGET_EXT; | |
my $argcount=@ARGV; | |
for (my $c=0; $c < $argcount; $c++){ | |
my $currFile = abs_path(shift); | |
my($filename, $dirs, $suffix) = fileparse($currFile); | |
(my $without_extension = $filename) =~ s/\.[^.]+$//; | |
my $fOutBasename = $without_extension . $SUFFIX; | |
my $fOut = $dirs . $fOutBasename; | |
say "fOut:" . $fOut; | |
my $cmd1 = qq{ffmpeg -y -i "$currFile" -c:v prores -profile:v 0 -q:v 25 -vf scale=$TARGET_WIDTH:-1 -c:a pcm_s16le -ar 48000 "$fOut"}; | |
say "Command is: ". $cmd1; | |
system $cmd1; | |
if ( $? == 0 ) { | |
say "convertion successful" | |
} | |
else { | |
say "convertion failed" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment