Browse Source

Update ffmpeg config

Daniel Supernault 2 years ago
parent
commit
55003148d4
1 changed files with 3 additions and 3 deletions
  1. 3 3
      config/laravel-ffmpeg.php

+ 3 - 3
config/laravel-ffmpeg.php

@@ -13,9 +13,9 @@ return [
 
     'timeout' => 3600,
 
-    'enable_logging' => env('FFMPEG_LOG', false),
-
-    'set_command_and_error_output_on_exception' => false,
+    'log_channel' => env('FFMPEG_LOG_CHANNEL', false),   // set to false to completely disable logging
 
     'temporary_files_root' => env('FFMPEG_TEMPORARY_FILES_ROOT', sys_get_temp_dir()),
+
+    'temporary_files_encrypted_hls' => env('FFMPEG_TEMPORARY_ENCRYPTED_HLS', env('FFMPEG_TEMPORARY_FILES_ROOT', sys_get_temp_dir())),
 ];