소스 검색

视频预览

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

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

@@ -58,7 +58,6 @@ class GeneratePreviewVideo extends Command
             mkdir($localPreviewPath, 0777, true);
         }
 
-
         $reslut = DB::table('site_preview_video')
             ->where('status', '==', 0) // 过滤非空 video 字段
             ->orderBy('id') // 按主键排序确保顺序
@@ -92,6 +91,10 @@ class GeneratePreviewVideo extends Command
                         'preview_url' => $uploadPath . '/' . $previewName,
                         'status' => 1
                     ]);
+
+                //删除本地文件
+                unlink($localFilePath);
+                unlink($previewPath);
             } catch (\Exception $e) {
                 DB::table('site_preview_video')
                     ->where('id', $item->id)