Closed GoogleCodeExporter closed 8 years ago
it seems to be a general issue with ffmpeg not accepting the "-command ''"
syntax.
The fix would be:
if ($argument == "''") $command_string = $command;
Original comment by cosmin.c...@gmail.com
on 14 Oct 2009 at 6:34
When you say a better result is acheived with
$this->addCommand('-qmin', 3);
$this->addCommand('-qmax', 6);
$this->addCommand('-r', 25);
do you mean that it works or the video is of better quality?
Original comment by bugged...@gmail.com
on 15 Dec 2009 at 10:13
This error happens for params, with empty args? Such as "-sameq". So the
desision to
fix this bug is change line:
$command_string = trim($command.($argument ? ' '.$argument : ''));
to:
$command_string = trim($command.($argument !== "''" ? ' '.$argument : ''));
in _combineCommands function.
Tested on ubuntu.
Original comment by fedulov.ivan
on 27 Feb 2010 at 8:51
PHPVideoToolkit has been updated to version 2.
Original comment by bugged...@gmail.com
on 20 Mar 2013 at 11:37
Original issue reported on code.google.com by
cosmin.c...@gmail.com
on 14 Oct 2009 at 3:52Attachments: