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
|
{
"version": 1,
"defaults": {
"resolution": "1920x1080",
"framerate": 60,
"tick_nav": true,
"verbose": false,
"cs2_path": "/path/to/Counter-Strike Global Offensive"
},
"jobs": [
{
"type": "pov",
"demo": "./demos/match1.dem",
"player": "PlayerName",
"output": "./recordings/match1_pov.mp4"
},
{
"type": "record",
"demo": "./demos/match2.dem",
"player": "PlayerName",
"output": "./recordings/match2_raw.mp4"
},
{
"demo": "./demos/match3.dem",
"player": "PlayerName",
"output": "./recordings/match3_pov.mp4",
"no_hud": true,
"tick_nav": false
}
]
}
|