Fixed: the use of [] was killing PHP 5.3 compat

This commit is contained in:
Emre Sokullu 2017-10-11 16:45:20 -07:00 committed by GitHub
commit 2bd63f4feb

View file

@ -130,7 +130,7 @@ class Video extends Audio
}
// Merge Filters into one command
$videoFilterVars = $videoFilterProcesses = [];
$videoFilterVars = $videoFilterProcesses = array();
for($i=0;$i<count($commands);$i++) {
$command = $commands[$i];
if ( $command == '-vf' ) {