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

File "HandlesFrames.php"

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

<?php

namespace ProtoneMedia\LaravelFFMpeg\Exporters;

trait HandlesFrames
{
    /**
     * @var boolean
     */
    protected $mustBeAccurate = false;

    /**
     * @var boolean
     */
    protected $returnFrameContents = false;

    public function accurate(): self
    {
        $this->mustBeAccurate = true;

        return $this;
    }

    public function unaccurate(): self
    {
        $this->mustBeAccurate = false;

        return $this;
    }

    public function getAccuracy(): bool
    {
        return $this->mustBeAccurate;
    }

    public function getFrameContents(): string
    {
        $this->returnFrameContents = true;

        return $this->save();
    }
}