PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
src
/
Transformation
/
Video
/
Transcode
<?php /** * This file is part of the Cloudinary PHP package. * * (c) Cloudinary * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Cloudinary\Transformation; use Cloudinary\ArrayUtils; use Cloudinary\Transformation\Qualifier\BaseQualifier; /** * Controls the range of acceptable FPS (Frames Per Second) to ensure that video (even when optimized) is delivered with * an expected FPS level (helps with sync to audio). * * **Learn more**: <a * href=https://cloudinary.com/documentation/video_transformation_reference#video_settings * target="_blank">Video settings</a> * * @property MinMaxRange value * * @api */ class Fps extends BaseQualifier { const VALUE_CLASS = MinMaxRange::class; /** * @var string $key Serialization key. */ protected static $key = 'fps'; /** * FPS constructor. * * @param $min * @param null $max */ public function __construct($min = null, $max = null) { parent::__construct($min, $max); } /** * Sets the minimum frame rate. * * @param int $min The minimum frame rate in frames per second. * * @return $this */ public function min($min) { $this->value->min($min); return $this; } /** * Sets the maximum frame rate. * * @param int $max The maximum frame rate in frames per second. * * @return $this */ public function max($max) { $this->value->max($max); return $this; } /** * Creates a new instance using provided qualifiers array. * * @param string|array $qualifiers The qualifiers. * * @return Fps */ public static function fromParams($qualifiers) { $qualifiers = ArrayUtils::build($qualifiers); return (new static(...$qualifiers)); } }
[-] StreamingProfile.php
[edit]
[-] Fps.php
[edit]
[-] KeyframeInterval.php
[edit]
[+]
..
[-] TranscodeTrait.php
[edit]
[-] VideoQualifierTrait.php
[edit]
[+]
Codec
[+]
Audio
[-] Transcode.php
[edit]
[-] BitRate.php
[edit]
[+]
ToAnimated