소스 검색

视频预览

moshaorui 2 주 전
부모
커밋
1794a1022a
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      app/Console/Commands/GeneratePreviewVideo.php

+ 6 - 1
app/Console/Commands/GeneratePreviewVideo.php

@@ -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) {