소스 검색

视频预览

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

+ 10 - 2
app/Console/Commands/GeneratePreviewVideo.php

@@ -144,8 +144,16 @@ class GeneratePreviewVideo extends Command
 
         // 输出为H.264编码的MP4
         $format = new \FFMpeg\Format\Video\X264();
-        $format->setAdditionalParameters([
-            '-an' // 禁用音频
+        $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'
         ]);
         $video->save($format, $outputPath);
         return $outputPath;