-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json.example
56 lines (53 loc) · 1.14 KB
/
config.json.example
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"redis": {
"url": "redis://redis",
"queue_name": "ffmpeg-queue",
"log": true
},
"upload": {
"max_queue_jobs": 1024,
"max_file_size": 10000,
"max_files": 1,
"_supported_types_ack": "Many thanks to DusanBrejka - https://gist.github.com/DusanBrejka/35238dccb5cefcc804de1c5a218ee004",
"supported_types": [
"video/3gpp",
"video/3gpp2",
"video/MP2T",
"video/mp4",
"video/mpeg",
"video/ogg",
"video/webm",
"video/x-flv",
"video/x-h261",
"video/x-h263",
"video/x-m4v",
"video/x-matroska",
"video/x-ms-asf",
"video/x-msvideo"
]
},
"ffmpeg": {
"process_interval": 1000,
"log": false,
"configs": [
{
"name": "720p",
"size": "1280x720",
"framerate": 60,
"videoCodec": "mpeg4",
"audioCodec": "aac",
"audioChannels": 2,
"bitrate": "2M"
},
{
"name": "1080p",
"size": "1920x1080",
"framerate": 60,
"videoCodec": "mpeg4",
"audioCodec": "aac",
"audioChannels": 2,
"bitrate": "5M"
}
]
}
}