mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-07 18:14:35 +00:00
57 lines
1.7 KiB
PHP
57 lines
1.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2016 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Alchemy\Phrasea\Command\Setup;
|
|
|
|
use Alchemy\Phrasea\Command\Command;
|
|
use Alchemy\Phrasea\Exception\RuntimeException;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
class H264ConfigurationDumper extends Command
|
|
{
|
|
public function __construct($name = null)
|
|
{
|
|
parent::__construct('h264-pseudo-streaming:dump-configuration');
|
|
|
|
$this->setDescription('Dump the virtual host configuration depending on Phraseanet configuration');
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function doExecute(InputInterface $input, OutputInterface $output)
|
|
{
|
|
$output->writeln('');
|
|
|
|
if (!$this->container['phraseanet.h264-factory']->isH264Enabled()) {
|
|
$output->writeln('H264 pseudo streaming support is <error>disabled</error>');
|
|
$ret = 1;
|
|
} else {
|
|
$output->writeln('H264 pseudo streaming support is <info>enabled</info>');
|
|
$ret = 0;
|
|
}
|
|
|
|
try {
|
|
$configuration = $this->container['phraseanet.h264-factory']->createMode(true, true)->getVirtualHostConfiguration();
|
|
$output->writeln('H264 pseudo streaming configuration seems <info>OK</info>');
|
|
$output->writeln($configuration);
|
|
} catch (RuntimeException $e) {
|
|
$output->writeln('H264 pseudo streaming configuration seems <error>invalid</error>');
|
|
$ret = 1;
|
|
}
|
|
|
|
$output->writeln('');
|
|
|
|
return $ret;
|
|
}
|
|
}
|