-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbatch.json
More file actions
81 lines (81 loc) · 1.48 KB
/
Copy pathbatch.json
File metadata and controls
81 lines (81 loc) · 1.48 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"output_dir": "out",
"on_error": "continue",
"defaults": {
"crf": 28,
"color": "sdr",
"audio": "auto"
},
"jobs": [
{
"input": "in/movie.mkv",
"output": "out/movie.mp4",
"crf": 24
},
{
"input": "in/promo.mov",
"output": "out/promo",
"mode": "hls",
"ladder": true,
"max_short_side": 1080,
"segment_seconds": 6
},
{
"input": "clips/*.mp4",
"output": "out/",
"crf": 30
},
{
"input": "in/hdr_source.mov",
"output": "out/hdr_720p.mp4",
"width": 1280,
"height": 720,
"color": "hdr10"
},
{
"input": "in/phone_clip.mov",
"output": "out/phone_fixed.mp4",
"width": 720,
"height": 1280,
"filter": [
{
"crop": {
"w": 1280,
"h": 720
}
},
"hflip",
{
"rotate": 90
}
]
},
{
"input": "in/lecture.mp4",
"output": "out/lecture",
"mode": "hls",
"codec": "h265",
"rungs": [
"1920x1080",
"1280x720",
"854x480"
],
"bit_depth": "10bit"
},
{
"input": "in/big_source.mxf",
"output": "out/big",
"mode": "hls",
"ladder": true,
"gpu_family": "nvidia",
"decode_gpu": 0,
"max_fps": 30
},
{
"input": "in/reference.mov",
"output": "out/reference.mp4",
"encode": "gpu:1",
"decode": "whole"
}
]
}