@shotstack/schemas 1.6.0 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +89 -89
- package/dist/json-schema/asset.json +3153 -0
- package/dist/json-schema/audio-asset.json +210 -0
- package/dist/json-schema/blueprint.json +380 -0
- package/dist/json-schema/caption-asset.json +285 -0
- package/dist/json-schema/caption-background.json +61 -0
- package/dist/json-schema/caption-detailer.json +275 -0
- package/dist/json-schema/caption-font.json +97 -0
- package/dist/json-schema/caption-margin.json +49 -0
- package/dist/json-schema/chroma-key.json +46 -0
- package/dist/json-schema/clip.json +3653 -0
- package/dist/json-schema/crop.json +69 -0
- package/dist/json-schema/destinations.json +495 -0
- package/dist/json-schema/edit.json +4618 -0
- package/dist/json-schema/flip-transformation.json +37 -0
- package/dist/json-schema/font.json +18 -0
- package/dist/json-schema/google-cloud-storage-destination-options.json +42 -0
- package/dist/json-schema/google-cloud-storage-destination.json +73 -0
- package/dist/json-schema/google-drive-destination-options.json +30 -0
- package/dist/json-schema/google-drive-destination.json +54 -0
- package/dist/json-schema/image-asset.json +104 -0
- package/dist/json-schema/image-to-video-asset.json +151 -0
- package/dist/json-schema/index.cjs +6 -0
- package/dist/json-schema/index.d.ts +11 -0
- package/dist/json-schema/index.js +8 -0
- package/dist/json-schema/luma-asset.json +38 -0
- package/dist/json-schema/merge-field.json +23 -0
- package/dist/json-schema/offset.json +175 -0
- package/dist/json-schema/output.json +771 -0
- package/dist/json-schema/poster.json +18 -0
- package/dist/json-schema/range.json +39 -0
- package/dist/json-schema/rich-caption-active-font.json +54 -0
- package/dist/json-schema/rich-caption-active.json +154 -0
- package/dist/json-schema/rich-caption-asset.json +1098 -0
- package/dist/json-schema/rich-caption-word-animation.json +60 -0
- package/dist/json-schema/rich-text-alignment.json +47 -0
- package/dist/json-schema/rich-text-animation.json +74 -0
- package/dist/json-schema/rich-text-asset.json +737 -0
- package/dist/json-schema/rich-text-background.json +52 -0
- package/dist/json-schema/rich-text-content.json +370 -0
- package/dist/json-schema/rich-text-effects.json +400 -0
- package/dist/json-schema/rich-text-font.json +157 -0
- package/dist/json-schema/rich-text-gradient.json +68 -0
- package/dist/json-schema/rich-text-shadow.json +79 -0
- package/dist/json-schema/rich-text-stroke.json +55 -0
- package/dist/json-schema/rich-text-style.json +165 -0
- package/dist/json-schema/rotate-transformation.json +153 -0
- package/dist/json-schema/s3destination-options.json +59 -0
- package/dist/json-schema/s3destination.json +90 -0
- package/dist/json-schema/schemas.json +5061 -0
- package/dist/json-schema/shape-asset.json +225 -0
- package/dist/json-schema/shotstack-destination.json +33 -0
- package/dist/json-schema/size.json +41 -0
- package/dist/json-schema/skew-transformation.json +175 -0
- package/dist/json-schema/soundtrack.json +47 -0
- package/dist/json-schema/svg-arrow-shape.json +49 -0
- package/dist/json-schema/svg-asset.json +877 -0
- package/dist/json-schema/svg-circle-shape.json +28 -0
- package/dist/json-schema/svg-cross-shape.json +42 -0
- package/dist/json-schema/svg-ellipse-shape.json +35 -0
- package/dist/json-schema/svg-fill.json +169 -0
- package/dist/json-schema/svg-gradient-stop.json +25 -0
- package/dist/json-schema/svg-heart-shape.json +28 -0
- package/dist/json-schema/svg-line-shape.json +35 -0
- package/dist/json-schema/svg-linear-gradient-fill.json +80 -0
- package/dist/json-schema/svg-path-shape.json +26 -0
- package/dist/json-schema/svg-polygon-shape.json +35 -0
- package/dist/json-schema/svg-radial-gradient-fill.json +66 -0
- package/dist/json-schema/svg-rectangle-shape.json +49 -0
- package/dist/json-schema/svg-ring-shape.json +35 -0
- package/dist/json-schema/svg-shadow.json +79 -0
- package/dist/json-schema/svg-shape.json +404 -0
- package/dist/json-schema/svg-solid-fill.json +40 -0
- package/dist/json-schema/svg-star-shape.json +42 -0
- package/dist/json-schema/svg-stroke.json +115 -0
- package/dist/json-schema/svg-transform.json +93 -0
- package/dist/json-schema/template.json +541 -0
- package/dist/json-schema/text-to-image-asset.json +128 -0
- package/dist/json-schema/text-to-speech-asset.json +239 -0
- package/dist/json-schema/thumbnail.json +25 -0
- package/dist/json-schema/timeline.json +3781 -0
- package/dist/json-schema/track.json +3668 -0
- package/dist/json-schema/transformation.json +281 -0
- package/dist/json-schema/transition.json +85 -0
- package/dist/json-schema/tween.json +120 -0
- package/dist/json-schema/video-asset.json +351 -0
- package/dist/json-schema/vimeo-destination-options.json +149 -0
- package/dist/json-schema/vimeo-destination-privacy-options.json +90 -0
- package/dist/json-schema/vimeo-destination.json +178 -0
- package/dist/json-schema/word-timing.json +44 -0
- package/dist/zod/zod.gen.cjs +1080 -921
- package/dist/zod/zod.gen.d.ts +139 -139
- package/dist/zod/zod.gen.js +1081 -922
- package/dist/zod/zod.gen.ts +1583 -1648
- package/package.json +79 -73
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "AudioAsset",
|
|
3
|
+
"strict": true,
|
|
4
|
+
"schema": {
|
|
5
|
+
"description": "The AudioAsset is used to add sound effects and audio at specific intervals on the timeline. The src must be a publicly accessible URL to an audio resource such as an mp3 file.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"type": {
|
|
9
|
+
"enum": [
|
|
10
|
+
"audio"
|
|
11
|
+
],
|
|
12
|
+
"description": "The type of asset - set to `audio` for audio assets.",
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"src": {
|
|
16
|
+
"description": "The audio source URL. The URL must be publicly accessible or include credentials.",
|
|
17
|
+
"type": "string"
|
|
18
|
+
},
|
|
19
|
+
"trim": {
|
|
20
|
+
"anyOf": [
|
|
21
|
+
{
|
|
22
|
+
"type": "number",
|
|
23
|
+
"description": "The start trim point of the audio clip, in seconds (defaults to 0). Audio will start from the in trim point. The audio will play until the file ends or the Clip length is reached."
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"type": "null"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
},
|
|
30
|
+
"volume": {
|
|
31
|
+
"description": "Set the volume of the audio clip. Use a number or an array of [Tween](./#tocs_tween) objects to create custom volume transitions.",
|
|
32
|
+
"anyOf": [
|
|
33
|
+
{
|
|
34
|
+
"type": "number",
|
|
35
|
+
"description": "The volume level for the audio clip. Range varies from 0 to 1 where 0 is muted and 1 is full volume (defaults to 1).",
|
|
36
|
+
"minimum": 0,
|
|
37
|
+
"maximum": 1
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"type": "array",
|
|
41
|
+
"description": "An array of [Tween](./#tocs_tween) objects used to create a custom volume effect. Modify the volume of an asset over time.",
|
|
42
|
+
"items": {
|
|
43
|
+
"$ref": "#/$defs/Tween"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"type": "null"
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
"speed": {
|
|
52
|
+
"anyOf": [
|
|
53
|
+
{
|
|
54
|
+
"type": "number",
|
|
55
|
+
"description": "Adjust the playback speed of the audio clip between 0 (paused) and 10 (10x normal speed), where 1 is normal speed (defaults to 1). Adjusting the speed will also adjust the duration of the clip and may require you to adjust the Clip length. For example, if you set speed to 0.5, the clip will need to be 2x as long to play the entire audio (i.e. original length / 0.5). If you set speed to 2, the clip will need to be half as long to play the entire audio (i.e. original length / 2).",
|
|
56
|
+
"minimum": 0,
|
|
57
|
+
"maximum": 10
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"type": "null"
|
|
61
|
+
}
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
"effect": {
|
|
65
|
+
"anyOf": [
|
|
66
|
+
{
|
|
67
|
+
"type": "string",
|
|
68
|
+
"description": "The effect to apply to the audio asset <ul>\n <li>`fadeIn` - fade volume in only</li>\n <li>`fadeOut` - fade volume out only</li>\n <li>`fadeInFadeOut` - fade volume in and out</li>\n</ul>",
|
|
69
|
+
"enum": [
|
|
70
|
+
"none",
|
|
71
|
+
"fadeIn",
|
|
72
|
+
"fadeOut",
|
|
73
|
+
"fadeInFadeOut"
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"type": "null"
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"additionalProperties": false,
|
|
83
|
+
"required": [
|
|
84
|
+
"type",
|
|
85
|
+
"src",
|
|
86
|
+
"trim",
|
|
87
|
+
"volume",
|
|
88
|
+
"speed",
|
|
89
|
+
"effect"
|
|
90
|
+
],
|
|
91
|
+
"$defs": {
|
|
92
|
+
"Tween": {
|
|
93
|
+
"description": "Use a Tween to [animate properties over time](/docs/guide/architecting-an-application/animations/). The following properties are currently supported and can be animated:\n <ul>\n <li>Opacity - animate the transparency of a clip.</li>\n <li>Offset - animate the x and y position of a clip.</li>\n <li>Rotation - animate the rotation of a clip.</li>\n <li>Skew - animate the horizontal and vertical shearing effect.</li>\n <li>Volume - animate the audio volume of a clip.</li>\n </ul>",
|
|
94
|
+
"properties": {
|
|
95
|
+
"from": {
|
|
96
|
+
"anyOf": [
|
|
97
|
+
{
|
|
98
|
+
"type": "string",
|
|
99
|
+
"description": "The initial property value at the start of the animation."
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"type": "null"
|
|
103
|
+
}
|
|
104
|
+
]
|
|
105
|
+
},
|
|
106
|
+
"to": {
|
|
107
|
+
"anyOf": [
|
|
108
|
+
{
|
|
109
|
+
"type": "string",
|
|
110
|
+
"description": "The final property value at the end of the animation."
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"type": "null"
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
"start": {
|
|
118
|
+
"anyOf": [
|
|
119
|
+
{
|
|
120
|
+
"type": "number",
|
|
121
|
+
"description": "The time in seconds when the animation starts, relative to the clip, not the timeline."
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"type": "null"
|
|
125
|
+
}
|
|
126
|
+
]
|
|
127
|
+
},
|
|
128
|
+
"length": {
|
|
129
|
+
"anyOf": [
|
|
130
|
+
{
|
|
131
|
+
"type": "number",
|
|
132
|
+
"description": "The duration of the animation in seconds."
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"type": "null"
|
|
136
|
+
}
|
|
137
|
+
]
|
|
138
|
+
},
|
|
139
|
+
"interpolation": {
|
|
140
|
+
"anyOf": [
|
|
141
|
+
{
|
|
142
|
+
"type": "string",
|
|
143
|
+
"description": "The interpolation method to use for the animation. Available options are: <ul>\n <li>`linear` - a linear interpolation between the start and end values.</li>\n <li>`bezier` - a bezier curve interpolation between the start and end values.</li>\n <li>`constant` - an interpolation where the property instantly jumps from the start to the end value, without any gradual transition.</li>\n</ul>",
|
|
144
|
+
"enum": [
|
|
145
|
+
"linear",
|
|
146
|
+
"bezier",
|
|
147
|
+
"constant"
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"type": "null"
|
|
152
|
+
}
|
|
153
|
+
]
|
|
154
|
+
},
|
|
155
|
+
"easing": {
|
|
156
|
+
"anyOf": [
|
|
157
|
+
{
|
|
158
|
+
"type": "string",
|
|
159
|
+
"description": "The easing function to use for the animation. Easing controls the rate of change of the animated value, allowing for more natural motion by speeding up or slowing down the animation at different points. Only applicable if interpolation is set to `bezier`.",
|
|
160
|
+
"enum": [
|
|
161
|
+
"ease",
|
|
162
|
+
"easeIn",
|
|
163
|
+
"easeOut",
|
|
164
|
+
"easeInOut",
|
|
165
|
+
"easeInQuad",
|
|
166
|
+
"easeInCubic",
|
|
167
|
+
"easeInQuart",
|
|
168
|
+
"easeInQuint",
|
|
169
|
+
"easeInSine",
|
|
170
|
+
"easeInExpo",
|
|
171
|
+
"easeInCirc",
|
|
172
|
+
"easeInBack",
|
|
173
|
+
"easeOutQuad",
|
|
174
|
+
"easeOutCubic",
|
|
175
|
+
"easeOutQuart",
|
|
176
|
+
"easeOutQuint",
|
|
177
|
+
"easeOutSine",
|
|
178
|
+
"easeOutExpo",
|
|
179
|
+
"easeOutCirc",
|
|
180
|
+
"easeOutBack",
|
|
181
|
+
"easeInOutQuad",
|
|
182
|
+
"easeInOutCubic",
|
|
183
|
+
"easeInOutQuart",
|
|
184
|
+
"easeInOutQuint",
|
|
185
|
+
"easeInOutSine",
|
|
186
|
+
"easeInOutExpo",
|
|
187
|
+
"easeInOutCirc",
|
|
188
|
+
"easeInOutBack"
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"type": "null"
|
|
193
|
+
}
|
|
194
|
+
]
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"additionalProperties": false,
|
|
198
|
+
"type": "object",
|
|
199
|
+
"required": [
|
|
200
|
+
"from",
|
|
201
|
+
"to",
|
|
202
|
+
"start",
|
|
203
|
+
"length",
|
|
204
|
+
"interpolation",
|
|
205
|
+
"easing"
|
|
206
|
+
]
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Blueprint",
|
|
3
|
+
"strict": true,
|
|
4
|
+
"schema": {
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"output": {
|
|
8
|
+
"$ref": "#/$defs/Output"
|
|
9
|
+
},
|
|
10
|
+
"merge": {
|
|
11
|
+
"anyOf": [
|
|
12
|
+
{
|
|
13
|
+
"type": "array",
|
|
14
|
+
"items": {
|
|
15
|
+
"$ref": "#/$defs/MergeField"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"type": "null"
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"timeline": {
|
|
24
|
+
"type": "object",
|
|
25
|
+
"properties": {
|
|
26
|
+
"tracks": {
|
|
27
|
+
"type": "array",
|
|
28
|
+
"items": {
|
|
29
|
+
"type": "object",
|
|
30
|
+
"properties": {
|
|
31
|
+
"clips": {
|
|
32
|
+
"type": "array",
|
|
33
|
+
"items": {
|
|
34
|
+
"$ref": "#/$defs/BlueprintClip"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"additionalProperties": false,
|
|
39
|
+
"required": [
|
|
40
|
+
"clips"
|
|
41
|
+
]
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"additionalProperties": false,
|
|
46
|
+
"required": [
|
|
47
|
+
"tracks"
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"additionalProperties": false,
|
|
52
|
+
"required": [
|
|
53
|
+
"output",
|
|
54
|
+
"merge",
|
|
55
|
+
"timeline"
|
|
56
|
+
],
|
|
57
|
+
"$defs": {
|
|
58
|
+
"BlueprintClip": {
|
|
59
|
+
"type": "object",
|
|
60
|
+
"properties": {
|
|
61
|
+
"asset": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"enum": [
|
|
64
|
+
"video",
|
|
65
|
+
"image",
|
|
66
|
+
"audio",
|
|
67
|
+
"rich-text",
|
|
68
|
+
"svg",
|
|
69
|
+
"caption"
|
|
70
|
+
]
|
|
71
|
+
},
|
|
72
|
+
"start": {
|
|
73
|
+
"anyOf": [
|
|
74
|
+
{
|
|
75
|
+
"type": "number",
|
|
76
|
+
"minimum": 0
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"type": "string"
|
|
80
|
+
}
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
"length": {
|
|
84
|
+
"anyOf": [
|
|
85
|
+
{
|
|
86
|
+
"type": "number",
|
|
87
|
+
"minimum": 0
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"type": "string"
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
"fit": {
|
|
95
|
+
"anyOf": [
|
|
96
|
+
{
|
|
97
|
+
"type": "string",
|
|
98
|
+
"enum": [
|
|
99
|
+
"cover",
|
|
100
|
+
"contain",
|
|
101
|
+
"crop",
|
|
102
|
+
"none"
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"type": "null"
|
|
107
|
+
}
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
"position": {
|
|
111
|
+
"anyOf": [
|
|
112
|
+
{
|
|
113
|
+
"type": "string",
|
|
114
|
+
"enum": [
|
|
115
|
+
"top",
|
|
116
|
+
"topRight",
|
|
117
|
+
"right",
|
|
118
|
+
"bottomRight",
|
|
119
|
+
"bottom",
|
|
120
|
+
"bottomLeft",
|
|
121
|
+
"left",
|
|
122
|
+
"topLeft",
|
|
123
|
+
"center"
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"type": "null"
|
|
128
|
+
}
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
"transition": {
|
|
132
|
+
"anyOf": [
|
|
133
|
+
{
|
|
134
|
+
"$ref": "#/$defs/Transition"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"type": "null"
|
|
138
|
+
}
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
"effect": {
|
|
142
|
+
"anyOf": [
|
|
143
|
+
{
|
|
144
|
+
"type": "string"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"type": "null"
|
|
148
|
+
}
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
"mergeField": {
|
|
152
|
+
"anyOf": [
|
|
153
|
+
{
|
|
154
|
+
"type": "string"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"type": "null"
|
|
158
|
+
}
|
|
159
|
+
]
|
|
160
|
+
},
|
|
161
|
+
"textHint": {
|
|
162
|
+
"anyOf": [
|
|
163
|
+
{
|
|
164
|
+
"type": "string"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"type": "null"
|
|
168
|
+
}
|
|
169
|
+
]
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"additionalProperties": false,
|
|
173
|
+
"required": [
|
|
174
|
+
"asset",
|
|
175
|
+
"start",
|
|
176
|
+
"length",
|
|
177
|
+
"fit",
|
|
178
|
+
"position",
|
|
179
|
+
"transition",
|
|
180
|
+
"effect",
|
|
181
|
+
"mergeField",
|
|
182
|
+
"textHint"
|
|
183
|
+
]
|
|
184
|
+
},
|
|
185
|
+
"Transition": {
|
|
186
|
+
"properties": {
|
|
187
|
+
"in": {
|
|
188
|
+
"anyOf": [
|
|
189
|
+
{
|
|
190
|
+
"type": "string",
|
|
191
|
+
"enum": [
|
|
192
|
+
"none",
|
|
193
|
+
"fade",
|
|
194
|
+
"reveal",
|
|
195
|
+
"wipeLeft",
|
|
196
|
+
"wipeRight",
|
|
197
|
+
"slideLeft",
|
|
198
|
+
"slideRight",
|
|
199
|
+
"slideUp",
|
|
200
|
+
"slideDown",
|
|
201
|
+
"carouselLeft",
|
|
202
|
+
"carouselRight",
|
|
203
|
+
"carouselUp",
|
|
204
|
+
"carouselDown",
|
|
205
|
+
"shuffleTopRight",
|
|
206
|
+
"shuffleRightTop",
|
|
207
|
+
"shuffleRightBottom",
|
|
208
|
+
"shuffleBottomRight",
|
|
209
|
+
"shuffleBottomLeft",
|
|
210
|
+
"shuffleLeftBottom",
|
|
211
|
+
"shuffleLeftTop",
|
|
212
|
+
"shuffleTopLeft",
|
|
213
|
+
"zoom"
|
|
214
|
+
]
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"type": "null"
|
|
218
|
+
}
|
|
219
|
+
]
|
|
220
|
+
},
|
|
221
|
+
"out": {
|
|
222
|
+
"anyOf": [
|
|
223
|
+
{
|
|
224
|
+
"type": "string",
|
|
225
|
+
"enum": [
|
|
226
|
+
"none",
|
|
227
|
+
"fade",
|
|
228
|
+
"reveal",
|
|
229
|
+
"wipeLeft",
|
|
230
|
+
"wipeRight",
|
|
231
|
+
"slideLeft",
|
|
232
|
+
"slideRight",
|
|
233
|
+
"slideUp",
|
|
234
|
+
"slideDown",
|
|
235
|
+
"carouselLeft",
|
|
236
|
+
"carouselRight",
|
|
237
|
+
"carouselUp",
|
|
238
|
+
"carouselDown",
|
|
239
|
+
"shuffleTopRight",
|
|
240
|
+
"shuffleRightTop",
|
|
241
|
+
"shuffleRightBottom",
|
|
242
|
+
"shuffleBottomRight",
|
|
243
|
+
"shuffleBottomLeft",
|
|
244
|
+
"shuffleLeftBottom",
|
|
245
|
+
"shuffleLeftTop",
|
|
246
|
+
"shuffleTopLeft",
|
|
247
|
+
"zoom"
|
|
248
|
+
]
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"type": "null"
|
|
252
|
+
}
|
|
253
|
+
]
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"additionalProperties": false,
|
|
257
|
+
"type": "object",
|
|
258
|
+
"required": [
|
|
259
|
+
"in",
|
|
260
|
+
"out"
|
|
261
|
+
]
|
|
262
|
+
},
|
|
263
|
+
"Output": {
|
|
264
|
+
"properties": {
|
|
265
|
+
"format": {
|
|
266
|
+
"enum": [
|
|
267
|
+
"mp4",
|
|
268
|
+
"gif",
|
|
269
|
+
"mp3",
|
|
270
|
+
"jpg",
|
|
271
|
+
"png",
|
|
272
|
+
"bmp"
|
|
273
|
+
],
|
|
274
|
+
"type": "string"
|
|
275
|
+
},
|
|
276
|
+
"resolution": {
|
|
277
|
+
"anyOf": [
|
|
278
|
+
{
|
|
279
|
+
"type": "string",
|
|
280
|
+
"enum": [
|
|
281
|
+
"preview",
|
|
282
|
+
"mobile",
|
|
283
|
+
"sd",
|
|
284
|
+
"hd",
|
|
285
|
+
"1080",
|
|
286
|
+
"4k"
|
|
287
|
+
]
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"type": "null"
|
|
291
|
+
}
|
|
292
|
+
]
|
|
293
|
+
},
|
|
294
|
+
"aspectRatio": {
|
|
295
|
+
"anyOf": [
|
|
296
|
+
{
|
|
297
|
+
"type": "string",
|
|
298
|
+
"enum": [
|
|
299
|
+
"16:9",
|
|
300
|
+
"9:16",
|
|
301
|
+
"1:1",
|
|
302
|
+
"4:5",
|
|
303
|
+
"4:3"
|
|
304
|
+
]
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"type": "null"
|
|
308
|
+
}
|
|
309
|
+
]
|
|
310
|
+
},
|
|
311
|
+
"fps": {
|
|
312
|
+
"anyOf": [
|
|
313
|
+
{
|
|
314
|
+
"type": "number",
|
|
315
|
+
"enum": [
|
|
316
|
+
12,
|
|
317
|
+
15,
|
|
318
|
+
23.976,
|
|
319
|
+
24,
|
|
320
|
+
25,
|
|
321
|
+
29.97,
|
|
322
|
+
30,
|
|
323
|
+
48,
|
|
324
|
+
50,
|
|
325
|
+
59.94,
|
|
326
|
+
60
|
|
327
|
+
]
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"type": "null"
|
|
331
|
+
}
|
|
332
|
+
]
|
|
333
|
+
},
|
|
334
|
+
"quality": {
|
|
335
|
+
"anyOf": [
|
|
336
|
+
{
|
|
337
|
+
"type": "string",
|
|
338
|
+
"enum": [
|
|
339
|
+
"verylow",
|
|
340
|
+
"low",
|
|
341
|
+
"medium",
|
|
342
|
+
"high",
|
|
343
|
+
"veryhigh"
|
|
344
|
+
]
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"type": "null"
|
|
348
|
+
}
|
|
349
|
+
]
|
|
350
|
+
}
|
|
351
|
+
},
|
|
352
|
+
"additionalProperties": false,
|
|
353
|
+
"required": [
|
|
354
|
+
"format",
|
|
355
|
+
"resolution",
|
|
356
|
+
"aspectRatio",
|
|
357
|
+
"fps",
|
|
358
|
+
"quality"
|
|
359
|
+
],
|
|
360
|
+
"type": "object"
|
|
361
|
+
},
|
|
362
|
+
"MergeField": {
|
|
363
|
+
"type": "object",
|
|
364
|
+
"properties": {
|
|
365
|
+
"find": {
|
|
366
|
+
"type": "string"
|
|
367
|
+
},
|
|
368
|
+
"replace": {
|
|
369
|
+
"type": "string"
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
"additionalProperties": false,
|
|
373
|
+
"required": [
|
|
374
|
+
"find",
|
|
375
|
+
"replace"
|
|
376
|
+
]
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
}
|