2013-06-25 10:03:20 +02:00
|
|
|
<?php
|
|
|
|
|
|
2016-03-06 23:38:04 +01:00
|
|
|
namespace Tests\FFMpeg\Unit\Media;
|
2013-06-25 10:03:20 +02:00
|
|
|
|
2020-02-13 00:39:31 +01:00
|
|
|
use FFMpeg\Exception\RuntimeException;
|
2013-06-25 10:03:20 +02:00
|
|
|
use FFMpeg\Media\Audio;
|
|
|
|
|
|
|
|
|
|
class AudioTest extends AbstractStreamableTestCase
|
|
|
|
|
{
|
|
|
|
|
public function testFiltersReturnsAudioFilters()
|
|
|
|
|
{
|
|
|
|
|
$driver = $this->getFFMpegDriverMock();
|
|
|
|
|
$ffprobe = $this->getFFProbeMock();
|
|
|
|
|
|
|
|
|
|
$audio = new Audio(__FILE__, $driver, $ffprobe);
|
|
|
|
|
$this->assertInstanceOf('FFMpeg\Filters\Audio\AudioFilters', $audio->filters());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testAddFiltersAddsAFilter()
|
|
|
|
|
{
|
|
|
|
|
$driver = $this->getFFMpegDriverMock();
|
|
|
|
|
$ffprobe = $this->getFFProbeMock();
|
|
|
|
|
|
|
|
|
|
$filters = $this->getMockBuilder('FFMpeg\Filters\FiltersCollection')
|
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
|
|
$audio = new Audio(__FILE__, $driver, $ffprobe);
|
|
|
|
|
$audio->setFiltersCollection($filters);
|
|
|
|
|
|
2020-02-13 00:23:11 +01:00
|
|
|
$filter = $this->getMockBuilder('FFMpeg\Filters\Audio\AudioFilterInterface')->getMock();
|
2013-06-25 10:03:20 +02:00
|
|
|
|
|
|
|
|
$filters->expects($this->once())
|
|
|
|
|
->method('add')
|
|
|
|
|
->with($filter);
|
|
|
|
|
|
|
|
|
|
$audio->addFilter($filter);
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-25 21:43:01 +02:00
|
|
|
public function testAddAVideoFilterThrowsException()
|
|
|
|
|
{
|
|
|
|
|
$driver = $this->getFFMpegDriverMock();
|
|
|
|
|
$ffprobe = $this->getFFProbeMock();
|
|
|
|
|
|
|
|
|
|
$filters = $this->getMockBuilder('FFMpeg\Filters\FiltersCollection')
|
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
|
|
$audio = new Audio(__FILE__, $driver, $ffprobe);
|
|
|
|
|
$audio->setFiltersCollection($filters);
|
|
|
|
|
|
2020-02-13 00:23:11 +01:00
|
|
|
$filter = $this->getMockBuilder('FFMpeg\Filters\Video\VideoFilterInterface')->getMock();
|
2013-06-25 21:43:01 +02:00
|
|
|
|
|
|
|
|
$filters->expects($this->never())
|
|
|
|
|
->method('add');
|
|
|
|
|
|
2020-02-13 00:39:31 +01:00
|
|
|
$this->expectException('\FFMpeg\Exception\InvalidArgumentException');
|
2013-06-25 21:43:01 +02:00
|
|
|
$audio->addFilter($filter);
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-25 10:03:20 +02:00
|
|
|
public function testSaveWithFailure()
|
|
|
|
|
{
|
|
|
|
|
$driver = $this->getFFMpegDriverMock();
|
|
|
|
|
$ffprobe = $this->getFFProbeMock();
|
|
|
|
|
$outputPathfile = '/target/file';
|
|
|
|
|
|
2020-02-13 00:23:11 +01:00
|
|
|
$format = $this->getMockBuilder('FFMpeg\Format\AudioInterface')->getMock();
|
2013-06-25 10:03:20 +02:00
|
|
|
$format->expects($this->any())
|
|
|
|
|
->method('getExtraParams')
|
2022-02-09 14:32:43 +01:00
|
|
|
->will($this->returnValue([]));
|
2013-06-25 10:03:20 +02:00
|
|
|
|
2020-02-13 00:39:31 +01:00
|
|
|
$configuration = $this->getMockBuilder('Alchemy\BinaryDriver\ConfigurationInterface')->getMock();
|
2013-06-25 10:03:20 +02:00
|
|
|
|
|
|
|
|
$driver->expects($this->any())
|
|
|
|
|
->method('getConfiguration')
|
|
|
|
|
->will($this->returnValue($configuration));
|
|
|
|
|
|
2020-02-13 00:39:31 +01:00
|
|
|
$failure = new RuntimeException('failed to encode');
|
2013-06-25 10:03:20 +02:00
|
|
|
$driver->expects($this->once())
|
|
|
|
|
->method('command')
|
|
|
|
|
->will($this->throwException($failure));
|
|
|
|
|
|
|
|
|
|
$audio = new Audio(__FILE__, $driver, $ffprobe);
|
2020-02-13 00:39:31 +01:00
|
|
|
$this->expectException('\FFMpeg\Exception\RuntimeException');
|
2013-06-25 10:03:20 +02:00
|
|
|
$audio->save($format, $outputPathfile);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testSaveAppliesFilters()
|
|
|
|
|
{
|
|
|
|
|
$driver = $this->getFFMpegDriverMock();
|
|
|
|
|
$ffprobe = $this->getFFProbeMock();
|
|
|
|
|
$outputPathfile = '/target/file';
|
2020-02-13 00:23:11 +01:00
|
|
|
$format = $this->getMockBuilder('FFMpeg\Format\AudioInterface')->getMock();
|
2013-06-25 10:03:20 +02:00
|
|
|
$format->expects($this->any())
|
|
|
|
|
->method('getExtraParams')
|
2022-02-09 14:32:43 +01:00
|
|
|
->will($this->returnValue([]));
|
2013-06-25 10:03:20 +02:00
|
|
|
|
2020-02-13 00:23:11 +01:00
|
|
|
$configuration = $this->getMockBuilder('Alchemy\BinaryDriver\ConfigurationInterface')->getMock();
|
2013-06-25 10:03:20 +02:00
|
|
|
|
|
|
|
|
$driver->expects($this->any())
|
|
|
|
|
->method('getConfiguration')
|
|
|
|
|
->will($this->returnValue($configuration));
|
|
|
|
|
|
|
|
|
|
$audio = new Audio(__FILE__, $driver, $ffprobe);
|
|
|
|
|
|
2020-02-13 00:23:11 +01:00
|
|
|
$filter = $this->getMockBuilder('FFMpeg\Filters\Audio\AudioFilterInterface')->getMock();
|
2013-06-25 10:03:20 +02:00
|
|
|
$filter->expects($this->once())
|
|
|
|
|
->method('apply')
|
|
|
|
|
->with($audio, $format)
|
2022-02-09 14:32:43 +01:00
|
|
|
->will($this->returnValue(['extra-filter-command']));
|
2013-06-25 10:03:20 +02:00
|
|
|
|
2022-02-09 14:32:43 +01:00
|
|
|
$capturedCommands = [];
|
2013-06-25 10:03:20 +02:00
|
|
|
|
|
|
|
|
$driver->expects($this->once())
|
|
|
|
|
->method('command')
|
|
|
|
|
->with($this->isType('array'), false, $this->anything())
|
|
|
|
|
->will($this->returnCallback(function ($commands, $errors, $listeners) use (&$capturedCommands) {
|
|
|
|
|
$capturedCommands[] = $commands;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$audio->addFilter($filter);
|
|
|
|
|
$audio->save($format, $outputPathfile);
|
|
|
|
|
|
|
|
|
|
foreach ($capturedCommands as $commands) {
|
|
|
|
|
$this->assertEquals('-y', $commands[0]);
|
|
|
|
|
$this->assertEquals('-i', $commands[1]);
|
|
|
|
|
$this->assertEquals(__FILE__, $commands[2]);
|
|
|
|
|
$this->assertEquals('extra-filter-command', $commands[3]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @dataProvider provideSaveData
|
|
|
|
|
*/
|
|
|
|
|
public function testSaveShouldSave($threads, $expectedCommands, $expectedListeners, $format)
|
|
|
|
|
{
|
|
|
|
|
$driver = $this->getFFMpegDriverMock();
|
|
|
|
|
$ffprobe = $this->getFFProbeMock();
|
|
|
|
|
|
2020-02-13 00:23:11 +01:00
|
|
|
$configuration = $this->getMockBuilder('Alchemy\BinaryDriver\ConfigurationInterface')->getMock();
|
2013-06-25 10:03:20 +02:00
|
|
|
|
|
|
|
|
$driver->expects($this->any())
|
|
|
|
|
->method('getConfiguration')
|
|
|
|
|
->will($this->returnValue($configuration));
|
|
|
|
|
|
|
|
|
|
$configuration->expects($this->once())
|
|
|
|
|
->method('has')
|
|
|
|
|
->with($this->equalTo('ffmpeg.threads'))
|
|
|
|
|
->will($this->returnValue($threads));
|
|
|
|
|
|
|
|
|
|
if ($threads) {
|
|
|
|
|
$configuration->expects($this->once())
|
|
|
|
|
->method('get')
|
|
|
|
|
->with($this->equalTo('ffmpeg.threads'))
|
|
|
|
|
->will($this->returnValue(24));
|
|
|
|
|
} else {
|
|
|
|
|
$configuration->expects($this->never())
|
|
|
|
|
->method('get');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$capturedCommand = $capturedListeners = null;
|
|
|
|
|
|
|
|
|
|
$driver->expects($this->once())
|
|
|
|
|
->method('command')
|
|
|
|
|
->with($this->isType('array'), false, $this->anything())
|
|
|
|
|
->will($this->returnCallback(function ($commands, $errors, $listeners) use (&$capturedCommand, &$capturedListeners) {
|
|
|
|
|
$capturedCommand = $commands;
|
|
|
|
|
$capturedListeners = $listeners;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$outputPathfile = '/target/file';
|
|
|
|
|
|
|
|
|
|
$audio = new Audio(__FILE__, $driver, $ffprobe);
|
|
|
|
|
$audio->save($format, $outputPathfile);
|
|
|
|
|
|
|
|
|
|
$this->assertEquals($expectedCommands, $capturedCommand);
|
|
|
|
|
$this->assertEquals($expectedListeners, $capturedListeners);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function provideSaveData()
|
|
|
|
|
{
|
2020-02-13 00:23:11 +01:00
|
|
|
$format = $this->getMockBuilder('FFMpeg\Format\AudioInterface')->getMock();
|
2013-06-25 10:03:20 +02:00
|
|
|
$format->expects($this->any())
|
|
|
|
|
->method('getExtraParams')
|
2022-02-09 14:32:43 +01:00
|
|
|
->will($this->returnValue([]));
|
2013-06-25 10:03:20 +02:00
|
|
|
$format->expects($this->any())
|
|
|
|
|
->method('getAudioKiloBitrate')
|
|
|
|
|
->will($this->returnValue(663));
|
2014-06-25 09:55:00 +02:00
|
|
|
$format->expects($this->any())
|
|
|
|
|
->method('getAudioChannels')
|
|
|
|
|
->will($this->returnValue(5));
|
2013-06-25 10:03:20 +02:00
|
|
|
|
2020-02-13 00:23:11 +01:00
|
|
|
$audioFormat = $this->getMockBuilder('FFMpeg\Format\AudioInterface')->getMock();
|
2013-06-25 10:03:20 +02:00
|
|
|
$audioFormat->expects($this->any())
|
|
|
|
|
->method('getExtraParams')
|
2022-02-09 14:32:43 +01:00
|
|
|
->will($this->returnValue([]));
|
2013-06-25 10:03:20 +02:00
|
|
|
$audioFormat->expects($this->any())
|
|
|
|
|
->method('getAudioKiloBitrate')
|
|
|
|
|
->will($this->returnValue(664));
|
2014-08-08 23:50:33 +02:00
|
|
|
$audioFormat->expects($this->any())
|
2014-06-25 09:55:00 +02:00
|
|
|
->method('getAudioChannels')
|
|
|
|
|
->will($this->returnValue(5));
|
2013-06-25 10:03:20 +02:00
|
|
|
$audioFormat->expects($this->any())
|
|
|
|
|
->method('getAudioCodec')
|
|
|
|
|
->will($this->returnValue('patati-patata-audio'));
|
|
|
|
|
|
2020-02-13 00:23:11 +01:00
|
|
|
$formatExtra = $this->getMockBuilder('FFMpeg\Format\AudioInterface')->getMock();
|
2013-06-25 10:03:20 +02:00
|
|
|
$formatExtra->expects($this->any())
|
|
|
|
|
->method('getExtraParams')
|
2022-02-09 14:32:43 +01:00
|
|
|
->will($this->returnValue(['extra', 'param']));
|
2013-06-25 10:03:20 +02:00
|
|
|
$formatExtra->expects($this->any())
|
|
|
|
|
->method('getAudioKiloBitrate')
|
|
|
|
|
->will($this->returnValue(665));
|
2014-06-25 09:55:00 +02:00
|
|
|
$formatExtra->expects($this->any())
|
|
|
|
|
->method('getAudioChannels')
|
|
|
|
|
->will($this->returnValue(5));
|
2013-06-25 10:03:20 +02:00
|
|
|
|
2022-02-09 14:32:43 +01:00
|
|
|
$listeners = [$this->getMockBuilder('Alchemy\BinaryDriver\Listeners\ListenerInterface')->getMock()];
|
2013-06-25 10:03:20 +02:00
|
|
|
|
2016-03-06 23:38:04 +01:00
|
|
|
$progressableFormat = $this->getMockBuilder('Tests\FFMpeg\Unit\Media\AudioProg')
|
2013-06-25 10:03:20 +02:00
|
|
|
->disableOriginalConstructor()->getMock();
|
|
|
|
|
$progressableFormat->expects($this->any())
|
|
|
|
|
->method('getExtraParams')
|
2022-02-09 14:32:43 +01:00
|
|
|
->will($this->returnValue([]));
|
2013-06-25 10:03:20 +02:00
|
|
|
$progressableFormat->expects($this->any())
|
|
|
|
|
->method('createProgressListener')
|
|
|
|
|
->will($this->returnValue($listeners));
|
|
|
|
|
$progressableFormat->expects($this->any())
|
|
|
|
|
->method('getAudioKiloBitrate')
|
|
|
|
|
->will($this->returnValue(666));
|
2014-06-25 09:55:00 +02:00
|
|
|
$progressableFormat->expects($this->any())
|
|
|
|
|
->method('getAudioChannels')
|
|
|
|
|
->will($this->returnValue(5));
|
2013-06-25 10:03:20 +02:00
|
|
|
|
2022-02-09 14:32:43 +01:00
|
|
|
return [
|
|
|
|
|
[false, [
|
|
|
|
|
'-y', '-i', __FILE__,
|
|
|
|
|
'-b:a', '663k',
|
|
|
|
|
'-ac', '5',
|
|
|
|
|
'/target/file',
|
|
|
|
|
], null, $format],
|
|
|
|
|
[false, [
|
|
|
|
|
'-y', '-i', __FILE__,
|
|
|
|
|
'-acodec', 'patati-patata-audio',
|
|
|
|
|
'-b:a', '664k',
|
|
|
|
|
'-ac', '5',
|
|
|
|
|
'/target/file',
|
|
|
|
|
], null, $audioFormat],
|
|
|
|
|
[false, [
|
|
|
|
|
'-y', '-i', __FILE__,
|
|
|
|
|
'extra', 'param',
|
|
|
|
|
'-b:a', '665k',
|
|
|
|
|
'-ac', '5',
|
|
|
|
|
'/target/file',
|
|
|
|
|
], null, $formatExtra],
|
|
|
|
|
[true, [
|
|
|
|
|
'-y', '-i', __FILE__,
|
|
|
|
|
'-threads', 24,
|
|
|
|
|
'-b:a', '663k',
|
|
|
|
|
'-ac', '5',
|
|
|
|
|
'/target/file',
|
|
|
|
|
], null, $format],
|
|
|
|
|
[true, [
|
|
|
|
|
'-y', '-i', __FILE__,
|
|
|
|
|
'extra', 'param',
|
|
|
|
|
'-threads', 24,
|
|
|
|
|
'-b:a', '665k',
|
|
|
|
|
'-ac', '5',
|
|
|
|
|
'/target/file',
|
|
|
|
|
], null, $formatExtra],
|
|
|
|
|
[false, [
|
|
|
|
|
'-y', '-i', __FILE__,
|
|
|
|
|
'-b:a', '666k',
|
|
|
|
|
'-ac', '5',
|
|
|
|
|
'/target/file',
|
|
|
|
|
], $listeners, $progressableFormat],
|
|
|
|
|
[true, [
|
|
|
|
|
'-y', '-i', __FILE__,
|
|
|
|
|
'-threads', 24,
|
|
|
|
|
'-b:a', '666k',
|
|
|
|
|
'-ac', '5',
|
|
|
|
|
'/target/file',
|
|
|
|
|
], $listeners, $progressableFormat],
|
|
|
|
|
];
|
2013-06-25 10:03:20 +02:00
|
|
|
}
|
|
|
|
|
|
2013-08-05 14:19:12 +02:00
|
|
|
public function testSaveShouldNotStoreCodecFiltersInTheMedia()
|
|
|
|
|
{
|
|
|
|
|
$driver = $this->getFFMpegDriverMock();
|
|
|
|
|
$ffprobe = $this->getFFProbeMock();
|
|
|
|
|
|
2020-02-13 00:23:11 +01:00
|
|
|
$configuration = $this->getMockBuilder('Alchemy\BinaryDriver\ConfigurationInterface')->getMock();
|
2013-08-05 14:19:12 +02:00
|
|
|
|
|
|
|
|
$driver->expects($this->any())
|
|
|
|
|
->method('getConfiguration')
|
|
|
|
|
->will($this->returnValue($configuration));
|
|
|
|
|
|
|
|
|
|
$configuration->expects($this->any())
|
|
|
|
|
->method('has')
|
|
|
|
|
->with($this->equalTo('ffmpeg.threads'))
|
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
|
|
$configuration->expects($this->any())
|
|
|
|
|
->method('get')
|
|
|
|
|
->with($this->equalTo('ffmpeg.threads'))
|
|
|
|
|
->will($this->returnValue(24));
|
|
|
|
|
|
2022-02-09 14:32:43 +01:00
|
|
|
$capturedCommands = [];
|
2013-08-05 14:19:12 +02:00
|
|
|
|
|
|
|
|
$driver->expects($this->exactly(2))
|
|
|
|
|
->method('command')
|
|
|
|
|
->with($this->isType('array'), false, $this->anything())
|
|
|
|
|
->will($this->returnCallback(function ($commands, $errors, $listeners) use (&$capturedCommands, &$capturedListeners) {
|
|
|
|
|
$capturedCommands[] = $commands;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
$outputPathfile = '/target/file';
|
|
|
|
|
|
2020-02-13 00:23:11 +01:00
|
|
|
$format = $this->getMockBuilder('FFMpeg\Format\AudioInterface')->getMock();
|
2013-08-05 14:19:12 +02:00
|
|
|
$format->expects($this->any())
|
|
|
|
|
->method('getExtraParams')
|
2022-02-09 14:32:43 +01:00
|
|
|
->will($this->returnValue(['param']));
|
2013-08-05 14:19:12 +02:00
|
|
|
|
|
|
|
|
$audio = new Audio(__FILE__, $driver, $ffprobe);
|
|
|
|
|
$audio->save($format, $outputPathfile);
|
|
|
|
|
$audio->save($format, $outputPathfile);
|
|
|
|
|
|
2022-02-09 14:32:43 +01:00
|
|
|
$expected = [
|
2013-08-05 14:19:12 +02:00
|
|
|
'-y', '-i', __FILE__, 'param', '-threads', 24, '/target/file',
|
2022-02-09 14:32:43 +01:00
|
|
|
];
|
2013-08-05 14:19:12 +02:00
|
|
|
|
|
|
|
|
foreach ($capturedCommands as $capturedCommand) {
|
|
|
|
|
$this->assertEquals($expected, $capturedCommand);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-25 10:03:20 +02:00
|
|
|
public function getClassName()
|
|
|
|
|
{
|
|
|
|
|
return 'FFMpeg\Media\Audio';
|
|
|
|
|
}
|
|
|
|
|
}
|