Merge pull request #441 from PHP-FFMpeg/jens1o-add-final-command
add `getFinalCommand` closes #403
This commit is contained in:
commit
631f5ac5d6
2 changed files with 119 additions and 58 deletions
|
|
@ -52,11 +52,9 @@ class Audio extends AbstractStreamableMedia
|
||||||
/**
|
/**
|
||||||
* Exports the audio in the desired format, applies registered filters.
|
* Exports the audio in the desired format, applies registered filters.
|
||||||
*
|
*
|
||||||
* @param FormatInterface $format
|
* @param FormatInterface $format
|
||||||
* @param string $outputPathfile
|
* @param string $outputPathfile
|
||||||
*
|
|
||||||
* @return Audio
|
* @return Audio
|
||||||
*
|
|
||||||
* @throws RuntimeException
|
* @throws RuntimeException
|
||||||
*/
|
*/
|
||||||
public function save(FormatInterface $format, $outputPathfile)
|
public function save(FormatInterface $format, $outputPathfile)
|
||||||
|
|
@ -67,6 +65,39 @@ class Audio extends AbstractStreamableMedia
|
||||||
$listeners = $format->createProgressListener($this, $this->ffprobe, 1, 1);
|
$listeners = $format->createProgressListener($this, $this->ffprobe, 1, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$commands = $this->buildCommand($format, $outputPathfile);
|
||||||
|
|
||||||
|
try {
|
||||||
|
$this->driver->command($commands, false, $listeners);
|
||||||
|
} catch (ExecutionFailureException $e) {
|
||||||
|
$this->cleanupTemporaryFile($outputPathfile);
|
||||||
|
throw new RuntimeException('Encoding failed', $e->getCode(), $e);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the final command as a string, useful for debugging purposes.
|
||||||
|
*
|
||||||
|
* @param FormatInterface $format
|
||||||
|
* @param string $outputPathfile
|
||||||
|
* @return string
|
||||||
|
* @since 0.11.0
|
||||||
|
*/
|
||||||
|
public function getFinalCommand(FormatInterface $format, $outputPathfile) {
|
||||||
|
return implode(' ', $this->buildCommand($format, $outputPathfile));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Builds the command which will be executed with the provided format
|
||||||
|
*
|
||||||
|
* @param FormatInterface $format
|
||||||
|
* @param string $outputPathfile
|
||||||
|
* @return string[] An array which are the components of the command
|
||||||
|
* @since 0.11.0
|
||||||
|
*/
|
||||||
|
protected function buildCommand(FormatInterface $format, $outputPathfile) {
|
||||||
$commands = array('-y', '-i', $this->pathfile);
|
$commands = array('-y', '-i', $this->pathfile);
|
||||||
|
|
||||||
$filters = clone $this->filters;
|
$filters = clone $this->filters;
|
||||||
|
|
@ -93,14 +124,7 @@ class Audio extends AbstractStreamableMedia
|
||||||
}
|
}
|
||||||
$commands[] = $outputPathfile;
|
$commands[] = $outputPathfile;
|
||||||
|
|
||||||
try {
|
return $commands;
|
||||||
$this->driver->command($commands, false, $listeners);
|
|
||||||
} catch (ExecutionFailureException $e) {
|
|
||||||
$this->cleanupTemporaryFile($outputPathfile);
|
|
||||||
throw new RuntimeException('Encoding failed', $e->getCode(), $e);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -28,8 +28,19 @@ use Neutron\TemporaryFilesystem\Manager as FsManager;
|
||||||
class Video extends Audio
|
class Video extends Audio
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* FileSystem Manager instance
|
||||||
*
|
* @var Manager
|
||||||
|
*/
|
||||||
|
protected $fs;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* FileSystem Manager ID
|
||||||
|
* @var int
|
||||||
|
*/
|
||||||
|
protected $fsId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @inheritDoc
|
||||||
* @return VideoFilters
|
* @return VideoFilters
|
||||||
*/
|
*/
|
||||||
public function filters()
|
public function filters()
|
||||||
|
|
@ -38,8 +49,7 @@ class Video extends Audio
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* @inheritDoc
|
||||||
*
|
|
||||||
* @return Video
|
* @return Video
|
||||||
*/
|
*/
|
||||||
public function addFilter(FilterInterface $filter)
|
public function addFilter(FilterInterface $filter)
|
||||||
|
|
@ -52,15 +62,66 @@ class Video extends Audio
|
||||||
/**
|
/**
|
||||||
* Exports the video in the desired format, applies registered filters.
|
* Exports the video in the desired format, applies registered filters.
|
||||||
*
|
*
|
||||||
* @param FormatInterface $format
|
* @param FormatInterface $format
|
||||||
* @param string $outputPathfile
|
* @param string $outputPathfile
|
||||||
*
|
|
||||||
* @return Video
|
* @return Video
|
||||||
*
|
|
||||||
* @throws RuntimeException
|
* @throws RuntimeException
|
||||||
*/
|
*/
|
||||||
public function save(FormatInterface $format, $outputPathfile)
|
public function save(FormatInterface $format, $outputPathfile)
|
||||||
{
|
{
|
||||||
|
$passes = $this->buildCommand($format, $outputPathfile);
|
||||||
|
|
||||||
|
$failure = null;
|
||||||
|
$totalPasses = $format->getPasses();
|
||||||
|
|
||||||
|
foreach ($passes as $pass => $passCommands) {
|
||||||
|
try {
|
||||||
|
/** add listeners here */
|
||||||
|
$listeners = null;
|
||||||
|
|
||||||
|
if ($format instanceof ProgressableInterface) {
|
||||||
|
$listeners = $format->createProgressListener($this, $this->ffprobe, $pass + 1, $totalPasses);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->driver->command($passCommands, false, $listeners);
|
||||||
|
} catch (ExecutionFailureException $e) {
|
||||||
|
$failure = $e;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->fs->clean($this->fsId);
|
||||||
|
|
||||||
|
if (null !== $failure) {
|
||||||
|
throw new RuntimeException('Encoding failed', $failure->getCode(), $failure);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* NOTE: This method is different to the Audio's one, because Video is using passes.
|
||||||
|
* @inheritDoc
|
||||||
|
*/
|
||||||
|
public function getFinalCommand(FormatInterface $format, $outputPathfile) {
|
||||||
|
$finalCommands = array();
|
||||||
|
|
||||||
|
foreach($this->buildCommand($format, $outputPathfile) as $pass => $passCommands) {
|
||||||
|
$finalCommands[] = implode(' ', $passCommands);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->fs->clean($this->fsId);
|
||||||
|
|
||||||
|
return $finalCommands;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* **NOTE:** This creates passes instead of a single command!
|
||||||
|
*
|
||||||
|
* @inheritDoc
|
||||||
|
* @return string[][]
|
||||||
|
*/
|
||||||
|
protected function buildCommand(FormatInterface $format, $outputPathfile) {
|
||||||
$commands = array('-y', '-i', $this->pathfile);
|
$commands = array('-y', '-i', $this->pathfile);
|
||||||
|
|
||||||
$filters = clone $this->filters;
|
$filters = clone $this->filters;
|
||||||
|
|
@ -141,7 +202,7 @@ class Video extends Audio
|
||||||
if ( preg_match("/^\[in\](.*?)\[out\]$/is", $command, $match) ) {
|
if ( preg_match("/^\[in\](.*?)\[out\]$/is", $command, $match) ) {
|
||||||
$videoFilterProcesses[] = $match[1];
|
$videoFilterProcesses[] = $match[1];
|
||||||
} else {
|
} else {
|
||||||
$videoFilterProcesses[] = $command;
|
$videoFilterProcesses[] = $command;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
foreach($commandSplits as $commandSplit) {
|
foreach($commandSplits as $commandSplit) {
|
||||||
|
|
@ -150,7 +211,7 @@ class Video extends Audio
|
||||||
$videoFilterProcesses[] = $match[1];
|
$videoFilterProcesses[] = $match[1];
|
||||||
} else {
|
} else {
|
||||||
$videoFilterVars[] = $command;
|
$videoFilterVars[] = $command;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
unset($commands[$i]);
|
unset($commands[$i]);
|
||||||
|
|
@ -164,32 +225,32 @@ class Video extends Audio
|
||||||
$command = '[' . $lastInput .']';
|
$command = '[' . $lastInput .']';
|
||||||
$command .= $process;
|
$command .= $process;
|
||||||
$lastInput = 'p' . $i;
|
$lastInput = 'p' . $i;
|
||||||
if ( $i == count($videoFilterProcesses) - 1 ) {
|
if($i === (count($videoFilterProcesses) - 1)) {
|
||||||
$command .= '[out]';
|
$command .= '[out]';
|
||||||
} else {
|
} else {
|
||||||
$command .= '[' . $lastInput . ']';
|
$command .= '[' . $lastInput . ']';
|
||||||
}
|
}
|
||||||
|
|
||||||
$videoFilterCommands[] = $command;
|
$videoFilterCommands[] = $command;
|
||||||
}
|
}
|
||||||
$videoFilterCommand = implode(";", $videoFilterCommands);
|
$videoFilterCommand = implode(';', $videoFilterCommands);
|
||||||
|
|
||||||
if ( $videoFilterCommand ) {
|
if($videoFilterCommand) {
|
||||||
$commands[] = '-vf';
|
$commands[] = '-vf';
|
||||||
$commands[] = $videoFilterCommand;
|
$commands[] = $videoFilterCommand;
|
||||||
}
|
}
|
||||||
|
|
||||||
$fs = FsManager::create();
|
$this->fs = FsManager::create();
|
||||||
$fsId = uniqid('ffmpeg-passes');
|
$this->fsId = uniqid('ffmpeg-passes');
|
||||||
$passPrefix = $fs->createTemporaryDirectory(0777, 50, $fsId) . '/' . uniqid('pass-');
|
$passPrefix = $this->fs->createTemporaryDirectory(0777, 50, $this->fsId) . '/' . uniqid('pass-');
|
||||||
$passes = array();
|
$passes = array();
|
||||||
$totalPasses = $format->getPasses();
|
$totalPasses = $format->getPasses();
|
||||||
|
|
||||||
if (1 > $totalPasses) {
|
if(!$totalPasses) {
|
||||||
throw new InvalidArgumentException('Pass number should be a positive value.');
|
throw new InvalidArgumentException('Pass number should be a positive value.');
|
||||||
}
|
}
|
||||||
|
|
||||||
for ($i = 1; $i <= $totalPasses; $i++) {
|
for($i = 1; $i <= $totalPasses; $i++) {
|
||||||
$pass = $commands;
|
$pass = $commands;
|
||||||
|
|
||||||
if ($totalPasses > 1) {
|
if ($totalPasses > 1) {
|
||||||
|
|
@ -204,31 +265,7 @@ class Video extends Audio
|
||||||
$passes[] = $pass;
|
$passes[] = $pass;
|
||||||
}
|
}
|
||||||
|
|
||||||
$failure = null;
|
return $passes;
|
||||||
|
|
||||||
foreach ($passes as $pass => $passCommands) {
|
|
||||||
try {
|
|
||||||
/** add listeners here */
|
|
||||||
$listeners = null;
|
|
||||||
|
|
||||||
if ($format instanceof ProgressableInterface) {
|
|
||||||
$listeners = $format->createProgressListener($this, $this->ffprobe, $pass + 1, $totalPasses);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->driver->command($passCommands, false, $listeners);
|
|
||||||
} catch (ExecutionFailureException $e) {
|
|
||||||
$failure = $e;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$fs->clean($fsId);
|
|
||||||
|
|
||||||
if (null !== $failure) {
|
|
||||||
throw new RuntimeException('Encoding failed', $failure->getCode(), $failure);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue