소스 검색

视频预览

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

+ 5 - 4
app/Console/Commands/GeneratePreviewVideo.php

@@ -4,6 +4,7 @@ namespace App\Console\Commands;
 
 use App\Libraries\CommonHelper;
 use Illuminate\Console\Command;
+use Illuminate\Http\File;
 use Illuminate\Support\Carbon;
 use Illuminate\Support\Facades\DB;
 use Illuminate\Support\Facades\Log;
@@ -81,10 +82,10 @@ class GeneratePreviewVideo extends Command
                 $this->generatePreview($localFilePath, $previewPath);
 
                 //上传到OSS
-                $uploadPath = 'videos/uploads/previews/'. date('Ym').'/'.$previewName;
-                $disk->putFile($uploadPath,$previewPath);
+                $uploadPath = 'videos/uploads/previews/'. date('Ym').'/';
+                $file = new File($previewPath);
+                $disk->putFileAs($uploadPath, $file, $previewName);
 
-                dd('success111cc');
                 DB::table('site_preview_video')
                     ->where('id', $item->id)
                     ->update([
@@ -102,7 +103,7 @@ class GeneratePreviewVideo extends Command
         }
 
         //$this->importVideo();
-        return dd('success');
+        return dd('success1');
     }
 
     private  function saveLocal($url, $localPath) {