fix(video-clips): set audio codec to aac, fixing audio issue on twitter

This commit is contained in:
Yassine Doghri 2022-01-28 11:06:45 +00:00
parent 45e8f99e75
commit 3c22c68ee8
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ class VideoClipper
'-filter_complex "' . implode(';', $filters) . '"',
'-map "[outfinal]"',
'-map 0:a',
'-acodec copy',
'-acodec aac',
'-vcodec libx264 -pix_fmt yuv420p',
"{$this->videoClipOutput}",
];