PHP Classes

File: config/laravel-ffmpeg.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   config/laravel-ffmpeg.php   Download  
File: config/laravel-ffmpeg.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: mtube
Application to share videos between users
Author: By
Last change:
Date: 2 years ago
Size: 412 bytes
 

Contents

Class file image Download
<?php

return [
   
'ffmpeg' => [
       
'binaries' => env('FFMPEG_BINARIES', 'ffmpeg'),
       
'threads' => 12,
    ],

   
'ffprobe' => [
       
'binaries' => env('FFPROBE_BINARIES', 'ffprobe'),
    ],

   
'timeout' => 3600,

   
'enable_logging' => true,

   
'set_command_and_error_output_on_exception' => false,

   
'temporary_files_root' => env('FFMPEG_TEMPORARY_FILES_ROOT', sys_get_temp_dir()),
];