-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
73 lines (70 loc) · 1.58 KB
/
config.js
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
const helpText = `
Usage
$ sqpreset <input>
Options
--defaults Generates preset with default values
--path Where to save the preset
--name, -n Preset name ['Untitled']
--desc, -d Preset description ['']
--width, -w Sequence width [1920]
--height, -h Sequence height [1080]
--fps, -f Sequence FPS [30]
--par, -p Pixel Aspect Ratio ['1,1']
--tracks, -t Amount of video tracks [3]
--maxRenderQuality Boolean [false]
--maxBitDepth Boolean [false]
--allowLinearCompositing Boolean [false]
`
const flags = {
flags: {
defaults: {
type: 'boolean',
},
path: {
type: 'string',
isRequired: true,
},
name: {
type: 'string',
alias: 'n'
},
desc: {
type: 'string',
alias: 'd'
},
width: {
type: 'number',
alias: 'w'
},
height: {
type: 'number',
alias: 'h'
},
fps: {
type: 'number',
alias: 'f'
},
par: {
type: 'string',
alias: 'p'
},
tracks: {
type: 'number',
alias: 't'
},
maxRenderQuality: {
type: 'boolean',
},
maxBitDepth: {
type: 'boolean',
},
allowLinearCompositing: {
type: 'boolean',
default: false,
},
}
}
module.exports = {
helpText,
flags,
}