Merge pull request #419 from esokullu/master
Fixed: the use of [] was killing PHP 5.3 compat
This commit is contained in:
commit
d386cc0cea
1 changed files with 1 additions and 1 deletions
|
|
@ -130,7 +130,7 @@ class Video extends Audio
|
||||||
}
|
}
|
||||||
|
|
||||||
// Merge Filters into one command
|
// Merge Filters into one command
|
||||||
$videoFilterVars = $videoFilterProcesses = [];
|
$videoFilterVars = $videoFilterProcesses = array();
|
||||||
for($i=0;$i<count($commands);$i++) {
|
for($i=0;$i<count($commands);$i++) {
|
||||||
$command = $commands[$i];
|
$command = $commands[$i];
|
||||||
if ( $command == '-vf' ) {
|
if ( $command == '-vf' ) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue