|
@@ -66,6 +66,7 @@ class GeneratePreviewVideo extends Command
|
|
|
|
|
|
foreach ($reslut as $item) {
|
|
|
try {
|
|
|
+ /*
|
|
|
$video_oss_url = $this->ossUrl($item->video_url);
|
|
|
$fileName = basename($video_oss_url);
|
|
|
$fileInfo = pathinfo($fileName);
|
|
@@ -79,9 +80,13 @@ class GeneratePreviewVideo extends Command
|
|
|
$previewPath = storage_path('tmp/previews/'.$previewName);
|
|
|
//截取视频前5秒
|
|
|
$this->generatePreview($localFilePath, $previewPath);
|
|
|
+ */
|
|
|
+
|
|
|
+ $previewPath = '/home/wwwroot/test.mtb.com/mtb_dcatadmin_album/storage/tmp/previews/648856874065661952_preview.mp4';
|
|
|
//上传到OSS
|
|
|
$uploadPath = 'videos/uploads/previews/'. date('Ym');
|
|
|
$disk->putFile($uploadPath,$previewPath);
|
|
|
+ dd('success111');
|
|
|
|
|
|
DB::table('site_preview_video')
|
|
|
->where('id', $item->id)
|
|
@@ -100,7 +105,7 @@ class GeneratePreviewVideo extends Command
|
|
|
}
|
|
|
|
|
|
//$this->importVideo();
|
|
|
- return Command::SUCCESS;
|
|
|
+ return dd('success');
|
|
|
}
|
|
|
|
|
|
private function saveLocal($url, $localPath) {
|