Fixed: the use of [] was killing PHP 5.3 compat
This commit is contained in:
parent
36a7d70732
commit
2bd63f4feb
1 changed files with 1 additions and 1 deletions
|
|
@ -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' ) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue