for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ProtoneMedia\LaravelFFMpeg\FFMpeg;
use FFMpeg\Media\Video;
class VideoMedia extends Video
{
use BuildsCommandsWithHttpHeaders;
/**
* Create a new instance of this class with the instance of the underlying library.
*
* @param \FFMpeg\Media\Video $video
* @return self
*/
public static function make(Video $video): self
return new static($video->getPathfile(), $video->getFFMpegDriver(), $video->getFFProbe());
}