소스 검색

视频预览

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

+ 3 - 11
app/Console/Commands/GeneratePreviewVideo.php

@@ -144,17 +144,9 @@ class GeneratePreviewVideo extends Command
 
         // 输出为H.264编码的MP4
         $format = new \FFMpeg\Format\Video\X264();
-        $format->setAudioCodec('none')  // 完全禁用音频
-        ->setAdditionalParameters([
-            '-crf 38',           // 极高压缩率(0-51,默认28)
-            '-preset superfast', // 最快编码速度
-            '-vf "scale=640:-2:flags=lanczos, fps=15"', // 分辨率+帧率限制
-            '-tune zerolatency', // 低延迟模式
-            '-x265-params rd=4:psy-rd=0:no-sao:no-deblock', // 关闭视觉优化
-            '-g 30',             // 关键帧间隔
-            '-pix_fmt yuv420p',  // 兼容色彩采样
-            '-movflags +faststart'
-        ]);
+        // 压缩参数:降低比特率以减小文件大小
+        $format->setKiloBitrate(500); // 设置视频比特率(kbps),500 是一个较低的值,可根据需要调整
+        $format->setAudioCodec('none'); // 禁用音频,或者可以用 setAdditionalParameters(['-an'])
         $video->save($format, $outputPath);
         return $outputPath;
     }