Rakan
Results
1
issues of
Rakan
I am using this to add a subtitle which if working fine: ```php FFMpeg::openUrl($videoUrl) ->addFilter(function (VideoFilters $filters) use ($subtitleFilePath) { $filters->custom("subtitles={$subtitleFilePath}"); }) ->export() ->inFormat(new X264()) ->toDisk('s3') ->save($savePath); ``` I tried...