Вход Регистрация
Файл: vendor/php-ffmpeg/php-ffmpeg/src/FFMpeg/Media/Audio.php
Строк: 148
<?php

/*
 * This file is part of PHP-FFmpeg.
 *
 * (c) Alchemy <info@alchemy.fr>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace FFMpegMedia;

use 
AlchemyBinaryDriverExceptionExecutionFailureException;
use 
FFMpegExceptionInvalidArgumentException;
use 
FFMpegExceptionRuntimeException;
use 
FFMpegFiltersAudioAudioFilterInterface;
use 
FFMpegFiltersAudioAudioFilters;
use 
FFMpegFiltersAudioSimpleFilter;
use 
FFMpegFiltersFilterInterface;
use 
FFMpegFormatFormatInterface;
use 
FFMpegFormatProgressableInterface;

class 
Audio extends AbstractStreamableMedia
{
    
/**
     * {@inheritdoc}
     *
     * @return AudioFilters
     */
    
public function filters()
    {
        return new 
AudioFilters($this);
    }

    
/**
     * {@inheritdoc}
     *
     * @return Audio
     */
    
public function addFilter(FilterInterface $filter)
    {
        if (!
$filter instanceof AudioFilterInterface) {
            throw new 
InvalidArgumentException('Audio only accepts AudioFilterInterface filters');
        }

        
$this->filters->add($filter);

        return 
$this;
    }

    
/**
     * Exports the audio in the desired format, applies registered filters.
     *
     * @param string $outputPathfile
     *
     * @return Audio
     *
     * @throws RuntimeException
     */
    
public function save(FormatInterface $format$outputPathfile)
    {
        
$listeners null;

        if (
$format instanceof ProgressableInterface) {
            
$listeners $format->createProgressListener($this$this->ffprobe110);
        }

        
$commands $this->buildCommand($format$outputPathfile);

        try {
            
$this->driver->command($commandsfalse$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 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 string $outputPathfile
     *
     * @return string[] An array which are the components of the command
     *
     * @since 0.11.0
     */
    
protected function buildCommand(FormatInterface $format$outputPathfile)
    {
        
$commands = ['-y''-i'$this->pathfile];

        
$filters = clone $this->filters;
        
$filters->add(new SimpleFilter($format->getExtraParams(), 10));

        if (
$this->driver->getConfiguration()->has('ffmpeg.threads')) {
            
$filters->add(new SimpleFilter(['-threads'$this->driver->getConfiguration()->get('ffmpeg.threads')]));
        }
        if (
null !== $format->getAudioCodec()) {
            
$filters->add(new SimpleFilter(['-acodec'$format->getAudioCodec()]));
        }

        foreach (
$filters as $filter) {
            
$commands array_merge($commands$filter->apply($this$format));
        }

        if (
null !== $format->getAudioKiloBitrate()) {
            
$commands[] = '-b:a';
            
$commands[] = $format->getAudioKiloBitrate().'k';
        }
        if (
null !== $format->getAudioChannels()) {
            
$commands[] = '-ac';
            
$commands[] = $format->getAudioChannels();
        }
        
$commands[] = $outputPathfile;

        return 
$commands;
    }

    
/**
     * Gets the waveform of the video.
     *
     * @param int   $width
     * @param int   $height
     * @param array $colors Array of colors for ffmpeg to use. Color format is #000000 (RGB hex string with #)
     *
     * @return Waveform
     */
    
public function waveform($width 640$height 120$colors = [Waveform::DEFAULT_COLOR])
    {
        return new 
Waveform($this$this->driver$this->ffprobe$width$height$colors);
    }

    
/**
     * Concatenates a list of audio files into one unique audio file.
     *
     * @param array $sources
     *
     * @return Concat
     */
    
public function concat($sources)
    {
        return new 
Concat($sources$this->driver$this->ffprobe);
    }
}
Онлайн: 1
Реклама