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