@shotstack/schemas 1.7.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/dist/json-schema/asset.json +31 -1
- package/dist/json-schema/audio-asset.json +31 -1
- package/dist/json-schema/blueprint.json +380 -0
- package/dist/json-schema/caption-detailer.json +275 -0
- package/dist/json-schema/clip.json +81 -3
- package/dist/json-schema/edit.json +81 -3
- package/dist/json-schema/index.cjs +5 -0
- package/dist/json-schema/index.d.ts +5 -0
- package/dist/json-schema/index.js +5 -0
- package/dist/json-schema/offset.json +31 -1
- package/dist/json-schema/rich-text-content.json +370 -0
- package/dist/json-schema/rich-text-effects.json +400 -0
- package/dist/json-schema/rotate-transformation.json +31 -1
- package/dist/json-schema/schemas.json +81 -3
- package/dist/json-schema/skew-transformation.json +31 -1
- package/dist/json-schema/template.json +541 -0
- package/dist/json-schema/text-to-speech-asset.json +31 -1
- package/dist/json-schema/timeline.json +81 -3
- package/dist/json-schema/track.json +81 -3
- package/dist/json-schema/transformation.json +52 -22
- package/dist/json-schema/transition.json +50 -2
- package/dist/json-schema/tween.json +31 -1
- package/dist/json-schema/video-asset.json +56 -26
- package/package.json +1 -1
|
@@ -460,7 +460,37 @@
|
|
|
460
460
|
"easing": {
|
|
461
461
|
"anyOf": [
|
|
462
462
|
{
|
|
463
|
-
"type": "string"
|
|
463
|
+
"type": "string",
|
|
464
|
+
"enum": [
|
|
465
|
+
"ease",
|
|
466
|
+
"easeIn",
|
|
467
|
+
"easeOut",
|
|
468
|
+
"easeInOut",
|
|
469
|
+
"easeInQuad",
|
|
470
|
+
"easeInCubic",
|
|
471
|
+
"easeInQuart",
|
|
472
|
+
"easeInQuint",
|
|
473
|
+
"easeInSine",
|
|
474
|
+
"easeInExpo",
|
|
475
|
+
"easeInCirc",
|
|
476
|
+
"easeInBack",
|
|
477
|
+
"easeOutQuad",
|
|
478
|
+
"easeOutCubic",
|
|
479
|
+
"easeOutQuart",
|
|
480
|
+
"easeOutQuint",
|
|
481
|
+
"easeOutSine",
|
|
482
|
+
"easeOutExpo",
|
|
483
|
+
"easeOutCirc",
|
|
484
|
+
"easeOutBack",
|
|
485
|
+
"easeInOutQuad",
|
|
486
|
+
"easeInOutCubic",
|
|
487
|
+
"easeInOutQuart",
|
|
488
|
+
"easeInOutQuint",
|
|
489
|
+
"easeInOutSine",
|
|
490
|
+
"easeInOutExpo",
|
|
491
|
+
"easeInOutCirc",
|
|
492
|
+
"easeInOutBack"
|
|
493
|
+
]
|
|
464
494
|
},
|
|
465
495
|
{
|
|
466
496
|
"type": "null"
|
|
@@ -3416,7 +3446,31 @@
|
|
|
3416
3446
|
"in": {
|
|
3417
3447
|
"anyOf": [
|
|
3418
3448
|
{
|
|
3419
|
-
"type": "string"
|
|
3449
|
+
"type": "string",
|
|
3450
|
+
"enum": [
|
|
3451
|
+
"none",
|
|
3452
|
+
"fade",
|
|
3453
|
+
"reveal",
|
|
3454
|
+
"wipeLeft",
|
|
3455
|
+
"wipeRight",
|
|
3456
|
+
"slideLeft",
|
|
3457
|
+
"slideRight",
|
|
3458
|
+
"slideUp",
|
|
3459
|
+
"slideDown",
|
|
3460
|
+
"carouselLeft",
|
|
3461
|
+
"carouselRight",
|
|
3462
|
+
"carouselUp",
|
|
3463
|
+
"carouselDown",
|
|
3464
|
+
"shuffleTopRight",
|
|
3465
|
+
"shuffleRightTop",
|
|
3466
|
+
"shuffleRightBottom",
|
|
3467
|
+
"shuffleBottomRight",
|
|
3468
|
+
"shuffleBottomLeft",
|
|
3469
|
+
"shuffleLeftBottom",
|
|
3470
|
+
"shuffleLeftTop",
|
|
3471
|
+
"shuffleTopLeft",
|
|
3472
|
+
"zoom"
|
|
3473
|
+
]
|
|
3420
3474
|
},
|
|
3421
3475
|
{
|
|
3422
3476
|
"type": "null"
|
|
@@ -3426,7 +3480,31 @@
|
|
|
3426
3480
|
"out": {
|
|
3427
3481
|
"anyOf": [
|
|
3428
3482
|
{
|
|
3429
|
-
"type": "string"
|
|
3483
|
+
"type": "string",
|
|
3484
|
+
"enum": [
|
|
3485
|
+
"none",
|
|
3486
|
+
"fade",
|
|
3487
|
+
"reveal",
|
|
3488
|
+
"wipeLeft",
|
|
3489
|
+
"wipeRight",
|
|
3490
|
+
"slideLeft",
|
|
3491
|
+
"slideRight",
|
|
3492
|
+
"slideUp",
|
|
3493
|
+
"slideDown",
|
|
3494
|
+
"carouselLeft",
|
|
3495
|
+
"carouselRight",
|
|
3496
|
+
"carouselUp",
|
|
3497
|
+
"carouselDown",
|
|
3498
|
+
"shuffleTopRight",
|
|
3499
|
+
"shuffleRightTop",
|
|
3500
|
+
"shuffleRightBottom",
|
|
3501
|
+
"shuffleBottomRight",
|
|
3502
|
+
"shuffleBottomLeft",
|
|
3503
|
+
"shuffleLeftBottom",
|
|
3504
|
+
"shuffleLeftTop",
|
|
3505
|
+
"shuffleTopLeft",
|
|
3506
|
+
"zoom"
|
|
3507
|
+
]
|
|
3430
3508
|
},
|
|
3431
3509
|
{
|
|
3432
3510
|
"type": "null"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "Transformation",
|
|
3
3
|
"strict": true,
|
|
4
4
|
"schema": {
|
|
5
|
-
"description": "Apply one or more transformations to a clip. Transformations alter the visual properties of a clip and can be combined
|
|
5
|
+
"description": "Apply one or more transformations to a clip. Transformations alter the visual properties of a clip and can be combined t...",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"additionalProperties": false,
|
|
8
8
|
"properties": {
|
|
@@ -44,22 +44,22 @@
|
|
|
44
44
|
],
|
|
45
45
|
"$defs": {
|
|
46
46
|
"RotateTransformation": {
|
|
47
|
-
"description": "Rotate a clip by the specified angle in degrees. Rotation origin is set based on
|
|
47
|
+
"description": "Rotate a clip by the specified angle in degrees. Rotation origin is set based on...",
|
|
48
48
|
"type": "object",
|
|
49
49
|
"additionalProperties": false,
|
|
50
50
|
"properties": {
|
|
51
51
|
"angle": {
|
|
52
|
-
"description": "Rotate a clip by the specified angle in degrees. Use a number or an array of [Tween](./#tocs_tween) objects
|
|
52
|
+
"description": "Rotate a clip by the specified angle in degrees. Use a number or an array of [Tween](./#tocs_tween) objects ...",
|
|
53
53
|
"anyOf": [
|
|
54
54
|
{
|
|
55
55
|
"type": "number",
|
|
56
|
-
"description": "The angle to rotate the clip. Can be 0 to 360, or 0 to -360. Using a positive number rotates the clip clockwise,
|
|
56
|
+
"description": "The angle to rotate the clip. Can be 0 to 360, or 0 to -360. Using a positive number rotates the clip clockwise, nega...",
|
|
57
57
|
"minimum": -360,
|
|
58
58
|
"maximum": 360
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
61
|
"type": "array",
|
|
62
|
-
"description": "An array of [Tween](./#tocs_tween) objects used to create a custom animation. Animate the
|
|
62
|
+
"description": "An array of [Tween](./#tocs_tween) objects used to create a custom animation. Animate the rotat...",
|
|
63
63
|
"items": {
|
|
64
64
|
"$ref": "#/$defs/Tween"
|
|
65
65
|
}
|
|
@@ -75,13 +75,13 @@
|
|
|
75
75
|
]
|
|
76
76
|
},
|
|
77
77
|
"Tween": {
|
|
78
|
-
"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
|
|
78
|
+
"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 v...",
|
|
79
79
|
"properties": {
|
|
80
80
|
"from": {
|
|
81
81
|
"anyOf": [
|
|
82
82
|
{
|
|
83
83
|
"type": "string",
|
|
84
|
-
"description": "The initial property value at the start of
|
|
84
|
+
"description": "The initial property value at the start of ..."
|
|
85
85
|
},
|
|
86
86
|
{
|
|
87
87
|
"type": "null"
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"anyOf": [
|
|
93
93
|
{
|
|
94
94
|
"type": "string",
|
|
95
|
-
"description": "The final property value at the end of
|
|
95
|
+
"description": "The final property value at the end of t..."
|
|
96
96
|
},
|
|
97
97
|
{
|
|
98
98
|
"type": "null"
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"anyOf": [
|
|
104
104
|
{
|
|
105
105
|
"type": "number",
|
|
106
|
-
"description": "The time in seconds when the animation starts, relative to the clip
|
|
106
|
+
"description": "The time in seconds when the animation starts, relative to the clip..."
|
|
107
107
|
},
|
|
108
108
|
{
|
|
109
109
|
"type": "null"
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"anyOf": [
|
|
115
115
|
{
|
|
116
116
|
"type": "number",
|
|
117
|
-
"description": "The duration of the animation
|
|
117
|
+
"description": "The duration of the animation ..."
|
|
118
118
|
},
|
|
119
119
|
{
|
|
120
120
|
"type": "null"
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"anyOf": [
|
|
126
126
|
{
|
|
127
127
|
"type": "string",
|
|
128
|
-
"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
|
|
128
|
+
"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...",
|
|
129
129
|
"enum": [
|
|
130
130
|
"linear",
|
|
131
131
|
"bezier",
|
|
@@ -141,7 +141,37 @@
|
|
|
141
141
|
"anyOf": [
|
|
142
142
|
{
|
|
143
143
|
"type": "string",
|
|
144
|
-
"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.
|
|
144
|
+
"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. O...",
|
|
145
|
+
"enum": [
|
|
146
|
+
"ease",
|
|
147
|
+
"easeIn",
|
|
148
|
+
"easeOut",
|
|
149
|
+
"easeInOut",
|
|
150
|
+
"easeInQuad",
|
|
151
|
+
"easeInCubic",
|
|
152
|
+
"easeInQuart",
|
|
153
|
+
"easeInQuint",
|
|
154
|
+
"easeInSine",
|
|
155
|
+
"easeInExpo",
|
|
156
|
+
"easeInCirc",
|
|
157
|
+
"easeInBack",
|
|
158
|
+
"easeOutQuad",
|
|
159
|
+
"easeOutCubic",
|
|
160
|
+
"easeOutQuart",
|
|
161
|
+
"easeOutQuint",
|
|
162
|
+
"easeOutSine",
|
|
163
|
+
"easeOutExpo",
|
|
164
|
+
"easeOutCirc",
|
|
165
|
+
"easeOutBack",
|
|
166
|
+
"easeInOutQuad",
|
|
167
|
+
"easeInOutCubic",
|
|
168
|
+
"easeInOutQuart",
|
|
169
|
+
"easeInOutQuint",
|
|
170
|
+
"easeInOutSine",
|
|
171
|
+
"easeInOutExpo",
|
|
172
|
+
"easeInOutCirc",
|
|
173
|
+
"easeInOutBack"
|
|
174
|
+
]
|
|
145
175
|
},
|
|
146
176
|
{
|
|
147
177
|
"type": "null"
|
|
@@ -161,22 +191,22 @@
|
|
|
161
191
|
]
|
|
162
192
|
},
|
|
163
193
|
"SkewTransformation": {
|
|
164
|
-
"description": "Skew a clip so its edges are sheared at an angle. Use values between -100 and 100. Values over 3 or under -3
|
|
194
|
+
"description": "Skew a clip so its edges are sheared at an angle. Use values between -100 and 100. Values over 3 or under -3 w...",
|
|
165
195
|
"type": "object",
|
|
166
196
|
"additionalProperties": false,
|
|
167
197
|
"properties": {
|
|
168
198
|
"x": {
|
|
169
|
-
"description": "Skew the clip along it'
|
|
199
|
+
"description": "Skew the clip along it'...",
|
|
170
200
|
"anyOf": [
|
|
171
201
|
{
|
|
172
202
|
"type": "number",
|
|
173
|
-
"description": "Range varies from -100 to 100. Positive numbers skew the asset right, negative left. The distance moved is relative to the width of the viewport - i.e. an X skew of 0.5 will skew
|
|
203
|
+
"description": "Range varies from -100 to 100. Positive numbers skew the asset right, negative left. The distance moved is relative to the width of the viewport - i.e. an X skew of 0.5 will skew ...",
|
|
174
204
|
"minimum": -100,
|
|
175
205
|
"maximum": 100
|
|
176
206
|
},
|
|
177
207
|
{
|
|
178
208
|
"type": "array",
|
|
179
|
-
"description": "An array of [Tween](./#tocs_tween) objects used to create a custom animation. Animate the X
|
|
209
|
+
"description": "An array of [Tween](./#tocs_tween) objects used to create a custom animation. Animate the X s...",
|
|
180
210
|
"items": {
|
|
181
211
|
"$ref": "#/$defs/Tween"
|
|
182
212
|
}
|
|
@@ -187,17 +217,17 @@
|
|
|
187
217
|
]
|
|
188
218
|
},
|
|
189
219
|
"y": {
|
|
190
|
-
"description": "Skew the clip along it'
|
|
220
|
+
"description": "Skew the clip along it'...",
|
|
191
221
|
"anyOf": [
|
|
192
222
|
{
|
|
193
223
|
"type": "number",
|
|
194
|
-
"description": "Range varies from -100 to 100. Positive numbers skew the asset up, negative down. The distance moved is relative to the height of the viewport - i.e. an Y skew of 0.5
|
|
224
|
+
"description": "Range varies from -100 to 100. Positive numbers skew the asset up, negative down. The distance moved is relative to the height of the viewport - i.e. an Y skew of 0.5 wil...",
|
|
195
225
|
"minimum": -100,
|
|
196
226
|
"maximum": 100
|
|
197
227
|
},
|
|
198
228
|
{
|
|
199
229
|
"type": "array",
|
|
200
|
-
"description": "An array of [Tween](./#tocs_tween) objects used to create a custom animation. Animate the Y
|
|
230
|
+
"description": "An array of [Tween](./#tocs_tween) objects used to create a custom animation. Animate the Y s...",
|
|
201
231
|
"items": {
|
|
202
232
|
"$ref": "#/$defs/Tween"
|
|
203
233
|
}
|
|
@@ -214,7 +244,7 @@
|
|
|
214
244
|
]
|
|
215
245
|
},
|
|
216
246
|
"FlipTransformation": {
|
|
217
|
-
"description": "Flip a clip vertically or horizontally. Acts as a mirror effect of the clip
|
|
247
|
+
"description": "Flip a clip vertically or horizontally. Acts as a mirror effect of the clip alo...",
|
|
218
248
|
"type": "object",
|
|
219
249
|
"additionalProperties": false,
|
|
220
250
|
"properties": {
|
|
@@ -222,7 +252,7 @@
|
|
|
222
252
|
"anyOf": [
|
|
223
253
|
{
|
|
224
254
|
"type": "boolean",
|
|
225
|
-
"description": "Flip a clip
|
|
255
|
+
"description": "Flip a clip horiz..."
|
|
226
256
|
},
|
|
227
257
|
{
|
|
228
258
|
"type": "null"
|
|
@@ -233,7 +263,7 @@
|
|
|
233
263
|
"anyOf": [
|
|
234
264
|
{
|
|
235
265
|
"type": "boolean",
|
|
236
|
-
"description": "Flip a clip
|
|
266
|
+
"description": "Flip a clip ver..."
|
|
237
267
|
},
|
|
238
268
|
{
|
|
239
269
|
"type": "null"
|
|
@@ -8,7 +8,31 @@
|
|
|
8
8
|
"anyOf": [
|
|
9
9
|
{
|
|
10
10
|
"type": "string",
|
|
11
|
-
"description": "The transition in. Available transitions are:\n <ul>\n <li>`fade` - fade in</li>\n <li>`reveal` - reveal from left to right</li>\n <li>`wipeLeft` - fade across screen to the left</li>\n <li>`wipeRight` - fade across screen to the right</li>\n <li>`slideLeft` - move slightly left and fade in</li>\n <li>`slideRight` - move slightly right and fade in</li>\n <li>`slideUp` - move slightly up and fade in</li>\n <li>`slideDown` - move slightly down and fade in</li>\n <li>`carouselLeft` - slide in from right to left</li>\n <li>`carouselRight` - slide in from left to right</li>\n <li>`carouselUp` - slide in from bottom to top</li>\n <li>`carouselDown` - slide in from top to bottom</li>\n <li>`shuffleTopRight` - rotate in from top right</li>\n <li>`shuffleRightTop` - rotate in from right top</li>\n <li>`shuffleRightBottom` - rotate in from right bottom</li>\n <li>`shuffleBottomRight` - rotate in from bottom right</li>\n <li>`shuffleBottomLeft` - rotate in from bottom left</li>\n <li>`shuffleLeftBottom` - rotate in from left bottom</li>\n <li>`shuffleLeftTop` - rotate in from left top</li>\n <li>`shuffleTopLeft` - rotate in from top left</li>\n <li>`zoom` - fast zoom in</li>\n </ul>\nThe transition speed can also be controlled by appending `Fast` or `Slow` to the transition, e.g. `fadeFast` or `CarouselLeftSlow`."
|
|
11
|
+
"description": "The transition in. Available transitions are:\n <ul>\n <li>`fade` - fade in</li>\n <li>`reveal` - reveal from left to right</li>\n <li>`wipeLeft` - fade across screen to the left</li>\n <li>`wipeRight` - fade across screen to the right</li>\n <li>`slideLeft` - move slightly left and fade in</li>\n <li>`slideRight` - move slightly right and fade in</li>\n <li>`slideUp` - move slightly up and fade in</li>\n <li>`slideDown` - move slightly down and fade in</li>\n <li>`carouselLeft` - slide in from right to left</li>\n <li>`carouselRight` - slide in from left to right</li>\n <li>`carouselUp` - slide in from bottom to top</li>\n <li>`carouselDown` - slide in from top to bottom</li>\n <li>`shuffleTopRight` - rotate in from top right</li>\n <li>`shuffleRightTop` - rotate in from right top</li>\n <li>`shuffleRightBottom` - rotate in from right bottom</li>\n <li>`shuffleBottomRight` - rotate in from bottom right</li>\n <li>`shuffleBottomLeft` - rotate in from bottom left</li>\n <li>`shuffleLeftBottom` - rotate in from left bottom</li>\n <li>`shuffleLeftTop` - rotate in from left top</li>\n <li>`shuffleTopLeft` - rotate in from top left</li>\n <li>`zoom` - fast zoom in</li>\n </ul>\nThe transition speed can also be controlled by appending `Fast` or `Slow` to the transition, e.g. `fadeFast` or `CarouselLeftSlow`.",
|
|
12
|
+
"enum": [
|
|
13
|
+
"none",
|
|
14
|
+
"fade",
|
|
15
|
+
"reveal",
|
|
16
|
+
"wipeLeft",
|
|
17
|
+
"wipeRight",
|
|
18
|
+
"slideLeft",
|
|
19
|
+
"slideRight",
|
|
20
|
+
"slideUp",
|
|
21
|
+
"slideDown",
|
|
22
|
+
"carouselLeft",
|
|
23
|
+
"carouselRight",
|
|
24
|
+
"carouselUp",
|
|
25
|
+
"carouselDown",
|
|
26
|
+
"shuffleTopRight",
|
|
27
|
+
"shuffleRightTop",
|
|
28
|
+
"shuffleRightBottom",
|
|
29
|
+
"shuffleBottomRight",
|
|
30
|
+
"shuffleBottomLeft",
|
|
31
|
+
"shuffleLeftBottom",
|
|
32
|
+
"shuffleLeftTop",
|
|
33
|
+
"shuffleTopLeft",
|
|
34
|
+
"zoom"
|
|
35
|
+
]
|
|
12
36
|
},
|
|
13
37
|
{
|
|
14
38
|
"type": "null"
|
|
@@ -19,7 +43,31 @@
|
|
|
19
43
|
"anyOf": [
|
|
20
44
|
{
|
|
21
45
|
"type": "string",
|
|
22
|
-
"description": "The transition out. Available transitions are:\n <ul>\n <li>`fade` - fade out</li>\n <li>`reveal` - reveal from right to left</li>\n <li>`wipeLeft` - fade across screen to the left</li>\n <li>`wipeRight` - fade across screen to the right</li>\n <li>`slideLeft` - move slightly left and fade out</li>\n <li>`slideRight` - move slightly right and fade out</li>\n <li>`slideUp` - move slightly up and fade out</li>\n <li>`slideDown` - move slightly down and fade out</li>\n <li>`carouselLeft` - slide out from right to left</li>\n <li>`carouselRight` - slide out from left to right</li>\n <li>`carouselUp` - slide out from bottom to top</li>\n <li>`carouselDown` - slide out from top to bottom</li>\n <li>`shuffleTopRight` - rotate out from top right</li>\n <li>`shuffleRightTop` - rotate out from right top</li>\n <li>`shuffleRightBottom` - rotate out from right bottom</li>\n <li>`shuffleBottomRight` - rotate out from bottom right</li>\n <li>`shuffleBottomLeft` - rotate out from bottom left</li>\n <li>`shuffleLeftBottom` - rotate out from left bottom</li>\n <li>`shuffleLeftTop` - rotate out from left top</li>\n <li>`shuffleTopLeft` - rotate out from top left</li>\n <li>`zoom` - fast zoom out</li>\n </ul>\nThe transition speed can also be controlled by appending `Fast` or `Slow` to the transition, e.g. `fadeFast` or `CarouselLeftSlow`."
|
|
46
|
+
"description": "The transition out. Available transitions are:\n <ul>\n <li>`fade` - fade out</li>\n <li>`reveal` - reveal from right to left</li>\n <li>`wipeLeft` - fade across screen to the left</li>\n <li>`wipeRight` - fade across screen to the right</li>\n <li>`slideLeft` - move slightly left and fade out</li>\n <li>`slideRight` - move slightly right and fade out</li>\n <li>`slideUp` - move slightly up and fade out</li>\n <li>`slideDown` - move slightly down and fade out</li>\n <li>`carouselLeft` - slide out from right to left</li>\n <li>`carouselRight` - slide out from left to right</li>\n <li>`carouselUp` - slide out from bottom to top</li>\n <li>`carouselDown` - slide out from top to bottom</li>\n <li>`shuffleTopRight` - rotate out from top right</li>\n <li>`shuffleRightTop` - rotate out from right top</li>\n <li>`shuffleRightBottom` - rotate out from right bottom</li>\n <li>`shuffleBottomRight` - rotate out from bottom right</li>\n <li>`shuffleBottomLeft` - rotate out from bottom left</li>\n <li>`shuffleLeftBottom` - rotate out from left bottom</li>\n <li>`shuffleLeftTop` - rotate out from left top</li>\n <li>`shuffleTopLeft` - rotate out from top left</li>\n <li>`zoom` - fast zoom out</li>\n </ul>\nThe transition speed can also be controlled by appending `Fast` or `Slow` to the transition, e.g. `fadeFast` or `CarouselLeftSlow`.",
|
|
47
|
+
"enum": [
|
|
48
|
+
"none",
|
|
49
|
+
"fade",
|
|
50
|
+
"reveal",
|
|
51
|
+
"wipeLeft",
|
|
52
|
+
"wipeRight",
|
|
53
|
+
"slideLeft",
|
|
54
|
+
"slideRight",
|
|
55
|
+
"slideUp",
|
|
56
|
+
"slideDown",
|
|
57
|
+
"carouselLeft",
|
|
58
|
+
"carouselRight",
|
|
59
|
+
"carouselUp",
|
|
60
|
+
"carouselDown",
|
|
61
|
+
"shuffleTopRight",
|
|
62
|
+
"shuffleRightTop",
|
|
63
|
+
"shuffleRightBottom",
|
|
64
|
+
"shuffleBottomRight",
|
|
65
|
+
"shuffleBottomLeft",
|
|
66
|
+
"shuffleLeftBottom",
|
|
67
|
+
"shuffleLeftTop",
|
|
68
|
+
"shuffleTopLeft",
|
|
69
|
+
"zoom"
|
|
70
|
+
]
|
|
23
71
|
},
|
|
24
72
|
{
|
|
25
73
|
"type": "null"
|
|
@@ -68,7 +68,37 @@
|
|
|
68
68
|
"anyOf": [
|
|
69
69
|
{
|
|
70
70
|
"type": "string",
|
|
71
|
-
"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`."
|
|
71
|
+
"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`.",
|
|
72
|
+
"enum": [
|
|
73
|
+
"ease",
|
|
74
|
+
"easeIn",
|
|
75
|
+
"easeOut",
|
|
76
|
+
"easeInOut",
|
|
77
|
+
"easeInQuad",
|
|
78
|
+
"easeInCubic",
|
|
79
|
+
"easeInQuart",
|
|
80
|
+
"easeInQuint",
|
|
81
|
+
"easeInSine",
|
|
82
|
+
"easeInExpo",
|
|
83
|
+
"easeInCirc",
|
|
84
|
+
"easeInBack",
|
|
85
|
+
"easeOutQuad",
|
|
86
|
+
"easeOutCubic",
|
|
87
|
+
"easeOutQuart",
|
|
88
|
+
"easeOutQuint",
|
|
89
|
+
"easeOutSine",
|
|
90
|
+
"easeOutExpo",
|
|
91
|
+
"easeOutCirc",
|
|
92
|
+
"easeOutBack",
|
|
93
|
+
"easeInOutQuad",
|
|
94
|
+
"easeInOutCubic",
|
|
95
|
+
"easeInOutQuart",
|
|
96
|
+
"easeInOutQuint",
|
|
97
|
+
"easeInOutSine",
|
|
98
|
+
"easeInOutExpo",
|
|
99
|
+
"easeInOutCirc",
|
|
100
|
+
"easeInOutBack"
|
|
101
|
+
]
|
|
72
102
|
},
|
|
73
103
|
{
|
|
74
104
|
"type": "null"
|
|
@@ -2,25 +2,25 @@
|
|
|
2
2
|
"name": "VideoAsset",
|
|
3
3
|
"strict": true,
|
|
4
4
|
"schema": {
|
|
5
|
-
"description": "The VideoAsset is used to create video sequences from video files. The
|
|
5
|
+
"description": "The VideoAsset is used to create video sequences from video files. The ...",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"properties": {
|
|
8
8
|
"type": {
|
|
9
9
|
"enum": [
|
|
10
10
|
"video"
|
|
11
11
|
],
|
|
12
|
-
"description": "The type of asset
|
|
12
|
+
"description": "The type of asset -...",
|
|
13
13
|
"type": "string"
|
|
14
14
|
},
|
|
15
15
|
"src": {
|
|
16
|
-
"description": "The video source URL. The URL must be
|
|
16
|
+
"description": "The video source URL. The URL must be...",
|
|
17
17
|
"type": "string"
|
|
18
18
|
},
|
|
19
19
|
"transcode": {
|
|
20
20
|
"anyOf": [
|
|
21
21
|
{
|
|
22
22
|
"type": "boolean",
|
|
23
|
-
"description": "Set to `true` to force re-encoding of the video during preprocessing. This can help resolve compatibility issues, fix rotation
|
|
23
|
+
"description": "Set to `true` to force re-encoding of the video during preprocessing. This can help resolve compatibility issues, fix rotation ..."
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
26
|
"type": "null"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"anyOf": [
|
|
32
32
|
{
|
|
33
33
|
"type": "number",
|
|
34
|
-
"description": "The start trim point of the video clip, in seconds (defaults to 0). Videos will start
|
|
34
|
+
"description": "The start trim point of the video clip, in seconds (defaults to 0). Videos will start ..."
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
"type": "null"
|
|
@@ -39,17 +39,17 @@
|
|
|
39
39
|
]
|
|
40
40
|
},
|
|
41
41
|
"volume": {
|
|
42
|
-
"description": "Set the volume of the video clip. Use a number or an array of
|
|
42
|
+
"description": "Set the volume of the video clip. Use a number or an array of...",
|
|
43
43
|
"anyOf": [
|
|
44
44
|
{
|
|
45
45
|
"type": "number",
|
|
46
|
-
"description": "The volume level for the video clip. Range varies from
|
|
46
|
+
"description": "The volume level for the video clip. Range varies from...",
|
|
47
47
|
"minimum": 0,
|
|
48
48
|
"maximum": 1
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
51
|
"type": "array",
|
|
52
|
-
"description": "An array of [Tween](./#tocs_tween) objects used to create
|
|
52
|
+
"description": "An array of [Tween](./#tocs_tween) objects used to create...",
|
|
53
53
|
"items": {
|
|
54
54
|
"$ref": "#/$defs/Tween"
|
|
55
55
|
}
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"anyOf": [
|
|
64
64
|
{
|
|
65
65
|
"type": "string",
|
|
66
|
-
"description": "Preset volume effects to apply to the video asset <ul>\n <li>`fadeIn` - fade volume in only</li
|
|
66
|
+
"description": "Preset volume effects to apply to the video asset <ul>\n <li>`fadeIn` - fade volume in only</li...",
|
|
67
67
|
"enum": [
|
|
68
68
|
"none",
|
|
69
69
|
"fadeIn",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"anyOf": [
|
|
81
81
|
{
|
|
82
82
|
"type": "number",
|
|
83
|
-
"description": "Adjust the playback speed of the video 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
|
|
83
|
+
"description": "Adjust the playback speed of the video 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 lengt...",
|
|
84
84
|
"minimum": 0,
|
|
85
85
|
"maximum": 10
|
|
86
86
|
},
|
|
@@ -124,13 +124,13 @@
|
|
|
124
124
|
],
|
|
125
125
|
"$defs": {
|
|
126
126
|
"Tween": {
|
|
127
|
-
"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 <
|
|
127
|
+
"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 <l...",
|
|
128
128
|
"properties": {
|
|
129
129
|
"from": {
|
|
130
130
|
"anyOf": [
|
|
131
131
|
{
|
|
132
132
|
"type": "string",
|
|
133
|
-
"description": "The initial property
|
|
133
|
+
"description": "The initial property valu..."
|
|
134
134
|
},
|
|
135
135
|
{
|
|
136
136
|
"type": "null"
|
|
@@ -141,7 +141,7 @@
|
|
|
141
141
|
"anyOf": [
|
|
142
142
|
{
|
|
143
143
|
"type": "string",
|
|
144
|
-
"description": "The final property
|
|
144
|
+
"description": "The final property valu..."
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
147
|
"type": "null"
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
"anyOf": [
|
|
153
153
|
{
|
|
154
154
|
"type": "number",
|
|
155
|
-
"description": "The time in seconds when the animation
|
|
155
|
+
"description": "The time in seconds when the animation ..."
|
|
156
156
|
},
|
|
157
157
|
{
|
|
158
158
|
"type": "null"
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
"anyOf": [
|
|
164
164
|
{
|
|
165
165
|
"type": "number",
|
|
166
|
-
"description": "The duration of
|
|
166
|
+
"description": "The duration of t..."
|
|
167
167
|
},
|
|
168
168
|
{
|
|
169
169
|
"type": "null"
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
"anyOf": [
|
|
175
175
|
{
|
|
176
176
|
"type": "string",
|
|
177
|
-
"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
|
|
177
|
+
"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 ...",
|
|
178
178
|
"enum": [
|
|
179
179
|
"linear",
|
|
180
180
|
"bezier",
|
|
@@ -190,7 +190,37 @@
|
|
|
190
190
|
"anyOf": [
|
|
191
191
|
{
|
|
192
192
|
"type": "string",
|
|
193
|
-
"description": "The easing function to use for the animation. Easing controls the rate of change of the animated value, allowing for more
|
|
193
|
+
"description": "The easing function to use for the animation. Easing controls the rate of change of the animated value, allowing for more na...",
|
|
194
|
+
"enum": [
|
|
195
|
+
"ease",
|
|
196
|
+
"easeIn",
|
|
197
|
+
"easeOut",
|
|
198
|
+
"easeInOut",
|
|
199
|
+
"easeInQuad",
|
|
200
|
+
"easeInCubic",
|
|
201
|
+
"easeInQuart",
|
|
202
|
+
"easeInQuint",
|
|
203
|
+
"easeInSine",
|
|
204
|
+
"easeInExpo",
|
|
205
|
+
"easeInCirc",
|
|
206
|
+
"easeInBack",
|
|
207
|
+
"easeOutQuad",
|
|
208
|
+
"easeOutCubic",
|
|
209
|
+
"easeOutQuart",
|
|
210
|
+
"easeOutQuint",
|
|
211
|
+
"easeOutSine",
|
|
212
|
+
"easeOutExpo",
|
|
213
|
+
"easeOutCirc",
|
|
214
|
+
"easeOutBack",
|
|
215
|
+
"easeInOutQuad",
|
|
216
|
+
"easeInOutCubic",
|
|
217
|
+
"easeInOutQuart",
|
|
218
|
+
"easeInOutQuint",
|
|
219
|
+
"easeInOutSine",
|
|
220
|
+
"easeInOutExpo",
|
|
221
|
+
"easeInOutCirc",
|
|
222
|
+
"easeInOutBack"
|
|
223
|
+
]
|
|
194
224
|
},
|
|
195
225
|
{
|
|
196
226
|
"type": "null"
|
|
@@ -210,13 +240,13 @@
|
|
|
210
240
|
]
|
|
211
241
|
},
|
|
212
242
|
"Crop": {
|
|
213
|
-
"description": "Crop the sides of an asset by a relative amount. The size of the crop is specified using a scale between 0 and 1, relative to the
|
|
243
|
+
"description": "Crop the sides of an asset by a relative amount. The size of the crop is specified using a scale between 0 and 1, relative to the scr...",
|
|
214
244
|
"properties": {
|
|
215
245
|
"top": {
|
|
216
246
|
"anyOf": [
|
|
217
247
|
{
|
|
218
248
|
"type": "number",
|
|
219
|
-
"description": "Crop from
|
|
249
|
+
"description": "Crop from t...",
|
|
220
250
|
"minimum": 0,
|
|
221
251
|
"maximum": 1
|
|
222
252
|
},
|
|
@@ -229,7 +259,7 @@
|
|
|
229
259
|
"anyOf": [
|
|
230
260
|
{
|
|
231
261
|
"type": "number",
|
|
232
|
-
"description": "Crop from the
|
|
262
|
+
"description": "Crop from the...",
|
|
233
263
|
"minimum": 0,
|
|
234
264
|
"maximum": 1
|
|
235
265
|
},
|
|
@@ -242,7 +272,7 @@
|
|
|
242
272
|
"anyOf": [
|
|
243
273
|
{
|
|
244
274
|
"type": "number",
|
|
245
|
-
"description": "Crop from
|
|
275
|
+
"description": "Crop from th...",
|
|
246
276
|
"minimum": 0,
|
|
247
277
|
"maximum": 1
|
|
248
278
|
},
|
|
@@ -255,7 +285,7 @@
|
|
|
255
285
|
"anyOf": [
|
|
256
286
|
{
|
|
257
287
|
"type": "number",
|
|
258
|
-
"description": "Crop from
|
|
288
|
+
"description": "Crop from th...",
|
|
259
289
|
"minimum": 0,
|
|
260
290
|
"maximum": 1
|
|
261
291
|
},
|
|
@@ -275,17 +305,17 @@
|
|
|
275
305
|
]
|
|
276
306
|
},
|
|
277
307
|
"ChromaKey": {
|
|
278
|
-
"description": "Chroma key is a technique that replaces a specific color in a video with a different background image or
|
|
308
|
+
"description": "Chroma key is a technique that replaces a specific color in a video with a different background image or vi...",
|
|
279
309
|
"properties": {
|
|
280
310
|
"color": {
|
|
281
|
-
"description": "The chroma key color as a hex value. Use green (#00b140) for green screens
|
|
311
|
+
"description": "The chroma key color as a hex value. Use green (#00b140) for green screens o...",
|
|
282
312
|
"type": "string"
|
|
283
313
|
},
|
|
284
314
|
"threshold": {
|
|
285
315
|
"anyOf": [
|
|
286
316
|
{
|
|
287
317
|
"type": "integer",
|
|
288
|
-
"description": "Pixels within this distance from the key color
|
|
318
|
+
"description": "Pixels within this distance from the key color...",
|
|
289
319
|
"minimum": 0,
|
|
290
320
|
"maximum": 250
|
|
291
321
|
},
|
|
@@ -298,7 +328,7 @@
|
|
|
298
328
|
"anyOf": [
|
|
299
329
|
{
|
|
300
330
|
"type": "integer",
|
|
301
|
-
"description": "Pixels within the halo distance from the threshold boundary are
|
|
331
|
+
"description": "Pixels within the halo distance from the threshold boundary are gi...",
|
|
302
332
|
"minimum": 0,
|
|
303
333
|
"maximum": 250
|
|
304
334
|
},
|