forked from AmericanCouncils/Mutate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmutate.conf.php
More file actions
30 lines (21 loc) · 924 Bytes
/
mutate.conf.php
File metadata and controls
30 lines (21 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
return array(
//enable/disable logging
'mutate.log.enabled' => true,
//path on filesystem to log file
'mutate.log.path' => __DIR__.'/logs/mutate.log',
//which level of messages to log, see () for more
'mutate.log.level' => Monolog\Logger::INFO,
//whether or not the handbrake adapter is enabled
'transcoder.handbrake.enabled' => true,
//path to handbrake executable on filesystem, if enabled
'transcoder.handbrake.path' => "/usr/bin/HandBrakeCLI",
//process timeout in seconds for handbrake, null means no timeout
'transcoder.handbrake.timeout' => null,
//whether or not ffmpeg adapter is enabled
'transcoder.ffmpeg.enabled' => true,
//path to ffmpeg executable on filesystem, if enabled
'transcoder.ffmpeg.path' => "/usr/bin/ffmpeg",
//process timeout in seconds for ffmpeg, null means no timeout
'transcoder.ffmpeg.timeout' => null
);