@rendley/sdk 1.0.7 → 1.1.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/Engine.d.ts +11 -23
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/modules/clip/Clip.d.ts +4 -3
- package/dist/modules/clip/ClipStyle.d.ts +4 -3
- package/dist/modules/clip/clips/audio/AudioClip.d.ts +0 -1
- package/dist/modules/clip/clips/custom/CustomClip.d.ts +34 -0
- package/dist/modules/clip/clips/index.d.ts +2 -0
- package/dist/modules/clip/clips/lottie/LottieClip.d.ts +2 -2
- package/dist/modules/clip/clips/shape/ShapeClip.d.ts +3 -3
- package/dist/modules/clip/clips/shape/ShapeStyle.d.ts +2 -2
- package/dist/modules/clip/clips/text/TextClip.d.ts +3 -2
- package/dist/modules/clip/clips/text/TextStyle.d.ts +3 -3
- package/dist/modules/clip/clips/video/VideoClip.d.ts +1 -1
- package/dist/modules/display/Display.d.ts +3 -3
- package/dist/modules/font-registry/FontRegistry.d.ts +1 -1
- package/dist/modules/layer/Layer.d.ts +4 -146
- package/dist/modules/timeline/Timeline.d.ts +7 -190
- package/dist/types/clip.types.d.ts +1 -0
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ export declare enum ClipState {
|
|
|
10
10
|
Offloaded = 3
|
|
11
11
|
}
|
|
12
12
|
export interface ClipOptions<K extends ClipStyle = ClipStyle> {
|
|
13
|
+
type?: string;
|
|
13
14
|
id?: string;
|
|
14
15
|
mediaDataId?: string;
|
|
15
16
|
subtitlesId?: string;
|
|
@@ -62,7 +63,6 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
62
63
|
}, "strip", z.ZodTypeAny, {
|
|
63
64
|
type: string;
|
|
64
65
|
id: string;
|
|
65
|
-
duration: number;
|
|
66
66
|
filters: {
|
|
67
67
|
options: {
|
|
68
68
|
lutUrl: string;
|
|
@@ -73,6 +73,7 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
73
73
|
effects: unknown[];
|
|
74
74
|
subtitlesOffset: number;
|
|
75
75
|
startTime: number;
|
|
76
|
+
duration: number;
|
|
76
77
|
leftTrim: number;
|
|
77
78
|
rightTrim: number;
|
|
78
79
|
warpMode: WarpModeEnum;
|
|
@@ -83,7 +84,6 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
83
84
|
}, {
|
|
84
85
|
type: string;
|
|
85
86
|
id: string;
|
|
86
|
-
duration: number;
|
|
87
87
|
filters: {
|
|
88
88
|
options: {
|
|
89
89
|
lutUrl: string;
|
|
@@ -94,6 +94,7 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
94
94
|
effects: unknown[];
|
|
95
95
|
subtitlesOffset: number;
|
|
96
96
|
startTime: number;
|
|
97
|
+
duration: number;
|
|
97
98
|
leftTrim: number;
|
|
98
99
|
rightTrim: number;
|
|
99
100
|
warpMode: WarpModeEnum;
|
|
@@ -175,7 +176,6 @@ export declare class Clip<T extends PIXI.Sprite = PIXI.Sprite, K extends ClipSty
|
|
|
175
176
|
serialize(): {
|
|
176
177
|
type: string;
|
|
177
178
|
id: string;
|
|
178
|
-
duration: number;
|
|
179
179
|
filters: {
|
|
180
180
|
options: {
|
|
181
181
|
lutUrl: string;
|
|
@@ -186,6 +186,7 @@ export declare class Clip<T extends PIXI.Sprite = PIXI.Sprite, K extends ClipSty
|
|
|
186
186
|
effects: unknown[];
|
|
187
187
|
subtitlesOffset: number;
|
|
188
188
|
startTime: number;
|
|
189
|
+
duration: number;
|
|
189
190
|
leftTrim: number;
|
|
190
191
|
rightTrim: number;
|
|
191
192
|
warpMode: WarpModeEnum;
|
|
@@ -26,10 +26,10 @@ export declare const schema: z.ZodObject<{
|
|
|
26
26
|
cornerRadius: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber, z.ZodNumber, z.ZodNumber], null>>;
|
|
27
27
|
relativeCornerRadius: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
28
28
|
}, "strip", z.ZodTypeAny, {
|
|
29
|
-
position: [number, number];
|
|
30
29
|
clipId: string;
|
|
31
30
|
alpha: number;
|
|
32
31
|
rotation: number;
|
|
32
|
+
position: [number, number];
|
|
33
33
|
scale: [number, number];
|
|
34
34
|
zIndex: number;
|
|
35
35
|
relativeCornerRadius: boolean;
|
|
@@ -38,10 +38,10 @@ export declare const schema: z.ZodObject<{
|
|
|
38
38
|
height?: number | undefined;
|
|
39
39
|
cornerRadius?: [number, number, number, number] | undefined;
|
|
40
40
|
}, {
|
|
41
|
-
position: [number, number];
|
|
42
41
|
clipId: string;
|
|
43
42
|
alpha: number;
|
|
44
43
|
rotation: number;
|
|
44
|
+
position: [number, number];
|
|
45
45
|
scale: [number, number];
|
|
46
46
|
zIndex: number;
|
|
47
47
|
mediaDataId?: string | undefined;
|
|
@@ -87,11 +87,12 @@ export declare class ClipStyle<T extends PIXI.Sprite = PIXI.Sprite> {
|
|
|
87
87
|
update(sprite: T): void;
|
|
88
88
|
private setCornerRadiusOnSprite;
|
|
89
89
|
protected emitUpdateEvent(property: string, value: unknown): boolean;
|
|
90
|
+
destroy(): void;
|
|
90
91
|
serialize(): {
|
|
91
|
-
position: [number, number];
|
|
92
92
|
clipId: string;
|
|
93
93
|
alpha: number;
|
|
94
94
|
rotation: number;
|
|
95
|
+
position: [number, number];
|
|
95
96
|
scale: [number, number];
|
|
96
97
|
zIndex: number;
|
|
97
98
|
relativeCornerRadius: boolean;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as PIXI from "pixi.js";
|
|
2
|
+
import { Clip, ClipOptions } from "../../Clip";
|
|
3
|
+
import { ClipStyle } from "../../ClipStyle";
|
|
4
|
+
export declare class CustomClip extends Clip<PIXI.Sprite, ClipStyle> {
|
|
5
|
+
constructor(options: ClipOptions);
|
|
6
|
+
init(layerId: string): Promise<void>;
|
|
7
|
+
updateVisibility(currentTime: number): void;
|
|
8
|
+
update(currentTime: number): void;
|
|
9
|
+
clone(): any;
|
|
10
|
+
destroy(): void;
|
|
11
|
+
serialize(): {
|
|
12
|
+
type: string;
|
|
13
|
+
id: string;
|
|
14
|
+
filters: {
|
|
15
|
+
options: {
|
|
16
|
+
lutUrl: string;
|
|
17
|
+
};
|
|
18
|
+
id: string;
|
|
19
|
+
sourceId: string;
|
|
20
|
+
}[];
|
|
21
|
+
effects: unknown[];
|
|
22
|
+
subtitlesOffset: number;
|
|
23
|
+
startTime: number;
|
|
24
|
+
duration: number;
|
|
25
|
+
leftTrim: number;
|
|
26
|
+
rightTrim: number;
|
|
27
|
+
warpMode: import('../../../../index').WarpModeEnum;
|
|
28
|
+
mediaDataId?: string | undefined;
|
|
29
|
+
subtitlesId?: string | undefined;
|
|
30
|
+
style?: unknown;
|
|
31
|
+
text?: string | undefined;
|
|
32
|
+
};
|
|
33
|
+
static deserialize(payload: object): CustomClip;
|
|
34
|
+
}
|
|
@@ -25,7 +25,6 @@ export declare class LottieClip extends Clip<PIXI.Sprite, ClipStyle<PIXI.Sprite>
|
|
|
25
25
|
serialize(): {
|
|
26
26
|
type: string;
|
|
27
27
|
id: string;
|
|
28
|
-
duration: number;
|
|
29
28
|
filters: {
|
|
30
29
|
options: {
|
|
31
30
|
lutUrl: string;
|
|
@@ -36,14 +35,15 @@ export declare class LottieClip extends Clip<PIXI.Sprite, ClipStyle<PIXI.Sprite>
|
|
|
36
35
|
effects: unknown[];
|
|
37
36
|
subtitlesOffset: number;
|
|
38
37
|
startTime: number;
|
|
38
|
+
duration: number;
|
|
39
39
|
leftTrim: number;
|
|
40
40
|
rightTrim: number;
|
|
41
41
|
warpMode: import('../../../../types').WarpModeEnum;
|
|
42
42
|
dataUrl: string;
|
|
43
43
|
text?: string | undefined;
|
|
44
|
-
style?: unknown;
|
|
45
44
|
mediaDataId?: string | undefined;
|
|
46
45
|
subtitlesId?: string | undefined;
|
|
46
|
+
style?: unknown;
|
|
47
47
|
assetsUrl?: string | undefined;
|
|
48
48
|
};
|
|
49
49
|
static deserialize(payload: object): LottieClip;
|
|
@@ -15,10 +15,9 @@ export declare class ShapeClip extends Clip<ShapeSprite, ShapeStyle> {
|
|
|
15
15
|
clone(): ShapeClip;
|
|
16
16
|
destroy(): void;
|
|
17
17
|
serialize(): {
|
|
18
|
+
shape: string;
|
|
18
19
|
type: string;
|
|
19
20
|
id: string;
|
|
20
|
-
shape: string;
|
|
21
|
-
duration: number;
|
|
22
21
|
filters: {
|
|
23
22
|
options: {
|
|
24
23
|
lutUrl: string;
|
|
@@ -29,13 +28,14 @@ export declare class ShapeClip extends Clip<ShapeSprite, ShapeStyle> {
|
|
|
29
28
|
effects: unknown[];
|
|
30
29
|
subtitlesOffset: number;
|
|
31
30
|
startTime: number;
|
|
31
|
+
duration: number;
|
|
32
32
|
leftTrim: number;
|
|
33
33
|
rightTrim: number;
|
|
34
34
|
warpMode: import('../../../../types').WarpModeEnum;
|
|
35
35
|
text?: string | undefined;
|
|
36
|
-
style?: unknown;
|
|
37
36
|
mediaDataId?: string | undefined;
|
|
38
37
|
subtitlesId?: string | undefined;
|
|
38
|
+
style?: unknown;
|
|
39
39
|
};
|
|
40
40
|
static deserialize(payload: object): ShapeClip;
|
|
41
41
|
}
|
|
@@ -26,17 +26,17 @@ export declare class ShapeStyle extends ClipStyle<ShapeSprite> {
|
|
|
26
26
|
getHasFill(): boolean;
|
|
27
27
|
update(container: ShapeSprite): void;
|
|
28
28
|
serialize(): {
|
|
29
|
-
position: [number, number];
|
|
30
29
|
clipId: string;
|
|
31
30
|
alpha: number;
|
|
32
31
|
rotation: number;
|
|
32
|
+
position: [number, number];
|
|
33
33
|
scale: [number, number];
|
|
34
34
|
zIndex: number;
|
|
35
35
|
relativeCornerRadius: boolean;
|
|
36
36
|
hasFill: boolean;
|
|
37
|
+
mediaDataId?: string | undefined;
|
|
37
38
|
width?: number | undefined;
|
|
38
39
|
height?: number | undefined;
|
|
39
|
-
mediaDataId?: string | undefined;
|
|
40
40
|
cornerRadius?: [number, number, number, number] | undefined;
|
|
41
41
|
fillColor?: string | undefined;
|
|
42
42
|
strokeColor?: string | undefined;
|
|
@@ -14,11 +14,11 @@ export declare class TextClip extends Clip<TextSprite, TextStyle> {
|
|
|
14
14
|
update(currentTime: number): void;
|
|
15
15
|
offload(): void;
|
|
16
16
|
clone(): TextClip;
|
|
17
|
+
destroy(): void;
|
|
17
18
|
serialize(): {
|
|
18
19
|
text: string;
|
|
19
20
|
type: string;
|
|
20
21
|
id: string;
|
|
21
|
-
duration: number;
|
|
22
22
|
filters: {
|
|
23
23
|
options: {
|
|
24
24
|
lutUrl: string;
|
|
@@ -29,12 +29,13 @@ export declare class TextClip extends Clip<TextSprite, TextStyle> {
|
|
|
29
29
|
effects: unknown[];
|
|
30
30
|
subtitlesOffset: number;
|
|
31
31
|
startTime: number;
|
|
32
|
+
duration: number;
|
|
32
33
|
leftTrim: number;
|
|
33
34
|
rightTrim: number;
|
|
34
35
|
warpMode: import('../../../../index').WarpModeEnum;
|
|
35
|
-
style?: unknown;
|
|
36
36
|
mediaDataId?: string | undefined;
|
|
37
37
|
subtitlesId?: string | undefined;
|
|
38
|
+
style?: unknown;
|
|
38
39
|
};
|
|
39
40
|
static deserialize(payload: object): TextClip;
|
|
40
41
|
}
|
|
@@ -46,23 +46,23 @@ export declare class TextStyle extends ClipStyle<TextSprite> {
|
|
|
46
46
|
setRotation(rotation: number): void;
|
|
47
47
|
update(container: TextSprite): void;
|
|
48
48
|
serialize(): {
|
|
49
|
-
backgroundColor: string | null;
|
|
50
49
|
color: string;
|
|
51
|
-
position: [number, number];
|
|
52
50
|
clipId: string;
|
|
53
51
|
alpha: number;
|
|
54
52
|
rotation: number;
|
|
53
|
+
position: [number, number];
|
|
55
54
|
scale: [number, number];
|
|
56
55
|
zIndex: number;
|
|
57
56
|
relativeCornerRadius: boolean;
|
|
57
|
+
backgroundColor: string | null;
|
|
58
58
|
fontSize: number;
|
|
59
59
|
fontWeight: "bold" | "normal" | "bolder" | "lighter" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900";
|
|
60
60
|
fontFamily: string;
|
|
61
61
|
textAlign: "left" | "center" | "right" | "justify";
|
|
62
62
|
fontStyle: "normal" | "italic" | "oblique";
|
|
63
|
+
mediaDataId?: string | undefined;
|
|
63
64
|
width?: number | undefined;
|
|
64
65
|
height?: number | undefined;
|
|
65
|
-
mediaDataId?: string | undefined;
|
|
66
66
|
cornerRadius?: [number, number, number, number] | undefined;
|
|
67
67
|
};
|
|
68
68
|
static deserialize(payload: object): TextStyle;
|
|
@@ -46,6 +46,6 @@ export declare class VideoClip extends Clip<PIXI.Sprite, ClipStyle<PIXI.Sprite>>
|
|
|
46
46
|
mute(): void;
|
|
47
47
|
unMute(): void;
|
|
48
48
|
extractMonoAudioData(startTime: number, endTime: number): Promise<Float32Array | null>;
|
|
49
|
-
|
|
49
|
+
destroy(): void;
|
|
50
50
|
clone(): Clip<PIXI.Sprite, ClipStyle<PIXI.Sprite>>;
|
|
51
51
|
}
|
|
@@ -6,12 +6,12 @@ export declare const DisplaySchema: z.ZodObject<{
|
|
|
6
6
|
backgroundColor: z.ZodString;
|
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
|
8
8
|
width: number;
|
|
9
|
-
backgroundColor: string;
|
|
10
9
|
height: number;
|
|
10
|
+
backgroundColor: string;
|
|
11
11
|
}, {
|
|
12
12
|
width: number;
|
|
13
|
-
backgroundColor: string;
|
|
14
13
|
height: number;
|
|
14
|
+
backgroundColor: string;
|
|
15
15
|
}>;
|
|
16
16
|
export type DisplayOptions = Partial<Omit<PixiRendererInitOptions, "view">> & {
|
|
17
17
|
view: HTMLCanvasElement;
|
|
@@ -35,8 +35,8 @@ export declare class Display {
|
|
|
35
35
|
destroy(): void;
|
|
36
36
|
serialize(): {
|
|
37
37
|
width: number;
|
|
38
|
-
backgroundColor: string;
|
|
39
38
|
height: number;
|
|
39
|
+
backgroundColor: string;
|
|
40
40
|
};
|
|
41
41
|
static deserialize(data: object): Display;
|
|
42
42
|
}
|
|
@@ -10,86 +10,7 @@ export declare const LayerSchema: z.ZodObject<{
|
|
|
10
10
|
id: z.ZodString;
|
|
11
11
|
isEnabled: z.ZodBoolean;
|
|
12
12
|
isMuted: z.ZodBoolean;
|
|
13
|
-
clips: z.ZodArray<z.
|
|
14
|
-
id: z.ZodString;
|
|
15
|
-
type: z.ZodString;
|
|
16
|
-
mediaDataId: z.ZodOptional<z.ZodString>;
|
|
17
|
-
subtitlesId: z.ZodOptional<z.ZodString>;
|
|
18
|
-
subtitlesOffset: z.ZodNumber;
|
|
19
|
-
startTime: z.ZodNumber;
|
|
20
|
-
duration: z.ZodNumber;
|
|
21
|
-
leftTrim: z.ZodNumber;
|
|
22
|
-
rightTrim: z.ZodNumber;
|
|
23
|
-
filters: z.ZodArray<z.ZodObject<{
|
|
24
|
-
id: z.ZodString;
|
|
25
|
-
sourceId: z.ZodString;
|
|
26
|
-
options: z.ZodObject<{
|
|
27
|
-
lutUrl: z.ZodString;
|
|
28
|
-
}, "strip", z.ZodTypeAny, {
|
|
29
|
-
lutUrl: string;
|
|
30
|
-
}, {
|
|
31
|
-
lutUrl: string;
|
|
32
|
-
}>;
|
|
33
|
-
}, "strip", z.ZodTypeAny, {
|
|
34
|
-
options: {
|
|
35
|
-
lutUrl: string;
|
|
36
|
-
};
|
|
37
|
-
id: string;
|
|
38
|
-
sourceId: string;
|
|
39
|
-
}, {
|
|
40
|
-
options: {
|
|
41
|
-
lutUrl: string;
|
|
42
|
-
};
|
|
43
|
-
id: string;
|
|
44
|
-
sourceId: string;
|
|
45
|
-
}>, "many">;
|
|
46
|
-
effects: z.ZodArray<z.ZodUnknown, "many">;
|
|
47
|
-
warpMode: z.ZodNativeEnum<typeof import('../../types').WarpModeEnum>;
|
|
48
|
-
style: z.ZodUnknown;
|
|
49
|
-
text: z.ZodOptional<z.ZodString>;
|
|
50
|
-
}, "strip", z.ZodTypeAny, {
|
|
51
|
-
type: string;
|
|
52
|
-
id: string;
|
|
53
|
-
duration: number;
|
|
54
|
-
filters: {
|
|
55
|
-
options: {
|
|
56
|
-
lutUrl: string;
|
|
57
|
-
};
|
|
58
|
-
id: string;
|
|
59
|
-
sourceId: string;
|
|
60
|
-
}[];
|
|
61
|
-
effects: unknown[];
|
|
62
|
-
subtitlesOffset: number;
|
|
63
|
-
startTime: number;
|
|
64
|
-
leftTrim: number;
|
|
65
|
-
rightTrim: number;
|
|
66
|
-
warpMode: import('../../types').WarpModeEnum;
|
|
67
|
-
mediaDataId?: string | undefined;
|
|
68
|
-
subtitlesId?: string | undefined;
|
|
69
|
-
style?: unknown;
|
|
70
|
-
text?: string | undefined;
|
|
71
|
-
}, {
|
|
72
|
-
type: string;
|
|
73
|
-
id: string;
|
|
74
|
-
duration: number;
|
|
75
|
-
filters: {
|
|
76
|
-
options: {
|
|
77
|
-
lutUrl: string;
|
|
78
|
-
};
|
|
79
|
-
id: string;
|
|
80
|
-
sourceId: string;
|
|
81
|
-
}[];
|
|
82
|
-
effects: unknown[];
|
|
83
|
-
subtitlesOffset: number;
|
|
84
|
-
startTime: number;
|
|
85
|
-
leftTrim: number;
|
|
86
|
-
rightTrim: number;
|
|
87
|
-
warpMode: import('../../types').WarpModeEnum;
|
|
88
|
-
mediaDataId?: string | undefined;
|
|
89
|
-
subtitlesId?: string | undefined;
|
|
90
|
-
style?: unknown;
|
|
91
|
-
text?: string | undefined;
|
|
92
|
-
}>, "many">;
|
|
13
|
+
clips: z.ZodArray<z.ZodAny, "many">;
|
|
93
14
|
transitions: z.ZodArray<z.ZodObject<{
|
|
94
15
|
id: z.ZodString;
|
|
95
16
|
name: z.ZodString;
|
|
@@ -122,28 +43,7 @@ export declare const LayerSchema: z.ZodObject<{
|
|
|
122
43
|
id: string;
|
|
123
44
|
isEnabled: boolean;
|
|
124
45
|
isMuted: boolean;
|
|
125
|
-
clips:
|
|
126
|
-
type: string;
|
|
127
|
-
id: string;
|
|
128
|
-
duration: number;
|
|
129
|
-
filters: {
|
|
130
|
-
options: {
|
|
131
|
-
lutUrl: string;
|
|
132
|
-
};
|
|
133
|
-
id: string;
|
|
134
|
-
sourceId: string;
|
|
135
|
-
}[];
|
|
136
|
-
effects: unknown[];
|
|
137
|
-
subtitlesOffset: number;
|
|
138
|
-
startTime: number;
|
|
139
|
-
leftTrim: number;
|
|
140
|
-
rightTrim: number;
|
|
141
|
-
warpMode: import('../../types').WarpModeEnum;
|
|
142
|
-
mediaDataId?: string | undefined;
|
|
143
|
-
subtitlesId?: string | undefined;
|
|
144
|
-
style?: unknown;
|
|
145
|
-
text?: string | undefined;
|
|
146
|
-
}[];
|
|
46
|
+
clips: any[];
|
|
147
47
|
transitions: {
|
|
148
48
|
name: string;
|
|
149
49
|
type: "transition";
|
|
@@ -158,28 +58,7 @@ export declare const LayerSchema: z.ZodObject<{
|
|
|
158
58
|
id: string;
|
|
159
59
|
isEnabled: boolean;
|
|
160
60
|
isMuted: boolean;
|
|
161
|
-
clips:
|
|
162
|
-
type: string;
|
|
163
|
-
id: string;
|
|
164
|
-
duration: number;
|
|
165
|
-
filters: {
|
|
166
|
-
options: {
|
|
167
|
-
lutUrl: string;
|
|
168
|
-
};
|
|
169
|
-
id: string;
|
|
170
|
-
sourceId: string;
|
|
171
|
-
}[];
|
|
172
|
-
effects: unknown[];
|
|
173
|
-
subtitlesOffset: number;
|
|
174
|
-
startTime: number;
|
|
175
|
-
leftTrim: number;
|
|
176
|
-
rightTrim: number;
|
|
177
|
-
warpMode: import('../../types').WarpModeEnum;
|
|
178
|
-
mediaDataId?: string | undefined;
|
|
179
|
-
subtitlesId?: string | undefined;
|
|
180
|
-
style?: unknown;
|
|
181
|
-
text?: string | undefined;
|
|
182
|
-
}[];
|
|
61
|
+
clips: any[];
|
|
183
62
|
transitions: {
|
|
184
63
|
name: string;
|
|
185
64
|
type: "transition";
|
|
@@ -226,28 +105,7 @@ export declare class Layer {
|
|
|
226
105
|
id: string;
|
|
227
106
|
isEnabled: boolean;
|
|
228
107
|
isMuted: boolean;
|
|
229
|
-
clips:
|
|
230
|
-
type: string;
|
|
231
|
-
id: string;
|
|
232
|
-
duration: number;
|
|
233
|
-
filters: {
|
|
234
|
-
options: {
|
|
235
|
-
lutUrl: string;
|
|
236
|
-
};
|
|
237
|
-
id: string;
|
|
238
|
-
sourceId: string;
|
|
239
|
-
}[];
|
|
240
|
-
effects: unknown[];
|
|
241
|
-
subtitlesOffset: number;
|
|
242
|
-
startTime: number;
|
|
243
|
-
leftTrim: number;
|
|
244
|
-
rightTrim: number;
|
|
245
|
-
warpMode: import('../../types').WarpModeEnum;
|
|
246
|
-
mediaDataId?: string | undefined;
|
|
247
|
-
subtitlesId?: string | undefined;
|
|
248
|
-
style?: unknown;
|
|
249
|
-
text?: string | undefined;
|
|
250
|
-
}[];
|
|
108
|
+
clips: any[];
|
|
251
109
|
transitions: {
|
|
252
110
|
name: string;
|
|
253
111
|
type: "transition";
|