forked from RaidOwl/AutoEncoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
56 lines (56 loc) · 1.3 KB
/
config.json
File metadata and controls
56 lines (56 loc) · 1.3 KB
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
{
"search_path": null,
"output_dir": "/mnt/md0/encoded_videos",
"rip_dir": "/mnt/md0/ripped_discs",
"final_dir": "/mnt/Network_HDD/Videos/encoded_videos",
"max_threads": 4,
"rescan_interval": 30,
"min_size_mb": 100,
"video_extensions": [".mp4", ".mkv", ".avi", ".mov", ".flv", ".wmv"],
"profile": "ffmpeg_qsv",
"ffmpeg": {
"encoder": "dnxhd",
"video": "scale=1920:1080,format=yuv422p",
"profile": "dnxhr_sq",
"extension": ".mov"
},
"ffmpeg_qsv": {
"hwdev": "qsv=hw",
"filterdev": "hw",
"encoder": "hevc_qsv",
"video": "hwupload=extra_hw_frames=64,scale_qsv=w=1280:h=720,format=qsv",
"quality": 20,
"audio": "copy",
"extension": ".mp4"
},
"ffmpeg_fallback": {
"encoder": "libx264",
"video": "scale=1920:1080,format=yuv420p",
"profile": "high",
"extension": ".mp4"
},
"handbrake": {
"encoder": "qsv_h265",
"quality": "10",
"width": 1280,
"height": 720,
"extension": ".mp4",
"extra_args": []
},
"handbrake_dvd": {
"encoder": "qsv_h265",
"quality": "20",
"width": 1920,
"height": 1080,
"extension": ".mp4",
"extra_args": []
},
"handbrake_br": {
"encoder": "qsv_h265",
"quality": "25",
"width": 3840,
"height": 2160,
"extension": ".mp4",
"extra_args": []
}
}