PHP code example of imanghafoori / laravel-video
1. Go to this page and download the library: Download imanghafoori/laravel-video 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/ */
imanghafoori / laravel-video example snippets
use Iman\Streamer\VideoStreamer;
Route::get('/home', function () {
$path = public_path('vid.mp4');
VideoStreamer::streamFile($path);
});