JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "CopyVideoFormat.php"

Full Path: /home/u743136113/domains/arvi.seezify.com/public_html/vendor/pbmedia/laravel-ffmpeg/src/FFMpeg/CopyVideoFormat.php
File size: 686 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace ProtoneMedia\LaravelFFMpeg\FFMpeg;

use FFMpeg\Format\Video\DefaultVideo;

class CopyVideoFormat extends DefaultVideo
{
    public function __construct()
    {
        $this->audioCodec = 'copy';
        $this->videoCodec = 'copy';

        $this->kiloBitrate      = 0;
        $this->audioKiloBitrate = null;
    }

    /**
     * {@inheritDoc}
     */
    public function getAvailableAudioCodecs()
    {
        return ['copy'];
    }

    /**
     * {@inheritDoc}
     */
    public function getAvailableVideoCodecs()
    {
        return ['copy'];
    }

    /**
     * {@inheritDoc}
     */
    public function supportBFrames()
    {
        return false;
    }
}