PHP code example of aminyazdanpanah / php-ffmpeg-video-streaming
1. Go to this page and download the library: Download aminyazdanpanah/php-ffmpeg-video-streaming library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
aminyazdanpanah / php-ffmpeg-video-streaming example snippets
use Streaming\Representation;
$r_360p = (new Representation)->setKiloBitrate(276)->setResize(640, 360);
$r_480p = (new Representation)->setKiloBitrate(750)->setResize(854, 480);
$r_720p = (new Representation)->setKiloBitrate(2048)->setResize(1280, 720);
$video->hls()
->x264()
->addRepresentations([$r_360p, $r_480p, $r_720p])
->save();