for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Pbmedia\LaravelFFMpeg;
use FFMpeg\Media\Frame as BaseFrame;
/**
* @method BaseFrame save($pathfile, $accurate = false)
*/
class Frame extends Media
{
public function export(): MediaExporter
return new FrameExporter($this);
}