-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
94 lines (90 loc) · 2.24 KB
/
config.example.json
File metadata and controls
94 lines (90 loc) · 2.24 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"project_name": "COSMIC-HUMANITY",
"renders_folder": "../_RENDERS",
"output_folder": "../_RENDERS",
"ffmpeg_path": "C:/Tools/ffmpeg/bin/ffmpeg.exe",
"auto_create_output": true,
"defaults": {
"resolution": "2048x2048",
"bitrate": "100M",
"file_extension": "jpeg",
"fps": 60,
"preset_name": "fulldome-2k",
"output_codec": "h264-nvenc-mp4"
},
"presets": [
{
"name": "fulldome-2k",
"description": "Standard 2K fulldome render (H.264)",
"resolution": "2048x2048",
"bitrate": "100M",
"fps": 60,
"output_codec": "h264-nvenc-mp4"
},
{
"name": "fulldome-4k",
"description": "High quality 4K fulldome (H.264)",
"resolution": "4096x4096",
"bitrate": "200M",
"fps": 60,
"output_codec": "h264-nvenc-mp4"
},
{
"name": "fulldome-4k-hevc",
"description": "4K fulldome with HEVC (smaller file size)",
"resolution": "4096x4096",
"bitrate": "150M",
"fps": 60,
"output_codec": "hevc-nvenc-mp4"
},
{
"name": "fulldome-prores",
"description": "ProRes 422 for professional editing",
"resolution": "2048x2048",
"bitrate": "100M",
"fps": 60,
"output_codec": "prores-422-mov"
},
{
"name": "fulldome-prores-hq",
"description": "ProRes 422 HQ for high-end production",
"resolution": "4096x4096",
"bitrate": "200M",
"fps": 60,
"output_codec": "prores-422-hq-mov"
},
{
"name": "vfx-prores-4444",
"description": "ProRes 4444 with alpha for VFX work",
"resolution": "4096x4096",
"bitrate": "200M",
"fps": 60,
"output_codec": "prores-4444-mov"
},
{
"name": "preview",
"description": "Faster preview output",
"resolution": "1024x1024",
"bitrate": "25M",
"fps": 30,
"output_codec": "h264-nvenc-mp4"
}
],
"encoding": {
"use_gpu": true,
"gpu_preset": "p7",
"cpu_preset": "veryslow",
"tune": "animation",
"pixel_format": "yuv420p",
"keyframe_interval": 60,
"b_frames": 3,
"rc_lookahead": 32,
"spatial_aq": 1,
"temporal_aq": 1
},
"ui": {
"theme": "frog_splash",
"show_file_count": true,
"auto_select_latest": true
}
}