pixelfed/app/Jobs/VideoPipeline/VideoThumbnail.php

63 wiersze
1.3 KiB
PHP
Czysty Zwykły widok Historia

2018-11-04 03:17:56 +00:00
<?php
namespace App\Jobs\VideoPipeline;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use FFMpeg;
use App\Media;
class VideoThumbnail implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
protected $media;
/**
* Create a new job instance.
*
* @return void
*/
public function __construct(Media $media)
{
$this->media = $media;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$media = $this->media;
2019-05-27 00:36:04 +00:00
if($media->mime != 'video/mp4') {
return;
}
2018-11-04 03:17:56 +00:00
$base = $media->media_path;
$path = explode('/', $base);
$name = last($path);
try {
$t = explode('.', $name);
2019-06-09 18:53:15 +00:00
$t = $t[0].'_thumb.jpeg';
2018-11-04 03:17:56 +00:00
$i = count($path) - 1;
$path[$i] = $t;
$save = implode('/', $path);
2019-05-27 00:36:04 +00:00
$video = FFMpeg::open($base)
2019-06-02 00:09:57 +00:00
->getFrameFromSeconds(0)
2019-05-27 00:36:04 +00:00
->export()
->toDisk('local')
->save($save);
2018-11-04 03:17:56 +00:00
$media->thumbnail_path = $save;
$media->save();
} catch (Exception $e) {
}
}
}