laravel-ffmpeg
laravel-ffmpeg copied to clipboard
This package provides an integration with FFmpeg for Laravel. Laravel's Filesystem handles the storage of the files.
I am a contributor on the [shaka project](https://github.com/shaka-project/shaka-player) and noticed that playback was broken with this library. This PR fixes a bug in the master playlist and allows playback with...
This is my code. ``` Route::get('/video/secret/{key}', function ($key) { return Storage::disk('secrets')->download($key); })->name('video.key'); Route::get('/video/{playlist}', function ($playlist) { return FFMpeg::dynamicHLSPlaylist() ->fromDisk('public') ->open($playlist) ->setKeyUrlResolver(function ($key) { return route('video.key', ['key' => $key]); }) ->setMediaUrlResolver(function...
Is it possible to get data after executing a command? /usr/bin/ffmpeg -i 1.mkv -af loudnorm=I=-16:TP=-1.5:LRA=11:print_format=summary -f null -
Hi guys, how can I -Hwaccel Cuda At HLS Thank you for helping me?
i want the user to download the file once he visits the m3u8 video path when i serve the file through FFMPEG DynamicPlaylist : in desktop -> browsers do it...
How to put audio watermark on the video at certain times?
I am trying to get video from s3 URL and creating a thumbnail from the video all things are working fine but I am not able to retrieve the file...
```PHP use ProtoneMedia\LaravelFFMpeg\Support\FFMpeg; Route::get('/test', function () { $image = \App\Models\Product\ProductImage::where('type', \App\Enums\MediaTypes::VIDEO)->firstOrFail(); FFMpeg::fromDisk('s3') ->open($image->url) // products/{hash}.mp4 ->export() ->toDisk('s3') ->inFormat(\App\Enums\VideoFormats::WEBM->getFFMpegFormat()) // new \FFMpeg\Format\Video\WebM ->save(sprintf('%s%s', $image->url, \App\Enums\VideoFormats::WEBM->value)); // .webm }); ``` Returns: FFMpeg\ ...
Hi, I'm trying to open an array of s3 URL and would like to concatenate them but when I try to do it I get the error: `Protocol 'https' not...
Hello, I'm trying to implement process that would give me multi bit-rate mp4 file on output. (each stream should have different resolution also) I could create each resolution/bit-rate version first...