|
@@ -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;
|