protonemedia / laravel-ffmpeg

This package provides an integration with FFmpeg for Laravel. Laravel's Filesystem handles the storage of the files.
https://protone.media/en/blog/how-to-use-ffmpeg-in-your-laravel-projects
MIT License
1.62k stars 193 forks source link

FFmpeg Hls GPU support #516

Open alishademan opened 7 months ago

alishademan commented 7 months ago

Hi guys,

how can I -Hwaccel Cuda At HLS Thank you for helping me?

iz-ben commented 4 months ago

@alishademan After a lot of experimentation this worked for me. I am using an nvidia gpu with wsl2 & cuda devkit installed

$highBitrateFormat = (new X264)->setKiloBitrate(3000);
$highBitrateFormat->setInitialParameters([
      '-hwaccel', 'cuda',
      '-hwaccel_output_format', 'cuda',
 ]);