-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
40 lines (40 loc) · 868 Bytes
/
config.example.json
File metadata and controls
40 lines (40 loc) · 868 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
31
32
33
34
35
36
37
38
39
40
{
"server": {
"listen": ":8097",
"public_url": "",
"debug": false
},
"upstream": {
"url": "http://127.0.0.1:8096"
},
"transcode": {
"enabled": true,
"ffmpeg_path": "/usr/bin/ffmpeg",
"temp_dir": "/var/lib/emby-transcoder/transcode",
"hardware_decode": "",
"hardware_device": "/dev/dri/renderD128",
"max_sessions": 2,
"buffer_pause_seconds": 300,
"buffer_resume_seconds": 120,
"segment_seconds": 2,
"segment_retention_seconds": 300,
"idle_timeout_seconds": 60
},
"clients": [
{
"name": "emby_android_tv",
"match": ["Emby for Android TV", "Android TV"],
"transcode": true
},
{
"name": "yamby_tv",
"match": ["Yamby"],
"transcode": true
},
{
"name": "senplayer_macos",
"match": ["SenPlayer"],
"transcode": false
}
]
}