-
-
Notifications
You must be signed in to change notification settings - Fork 316
/
Copy pathimage.json5
29 lines (29 loc) · 949 Bytes
/
image.json5
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
{
width: 600,
height: 300,
outPath: "./image.mp4",
defaults: {
transition: null,
duration: 0.2,
},
clips: [
{ layers: [{ type: "image", path: "./assets/pano.jpg" }] },
{ layers: [{ type: "image", path: "./assets/vertical.jpg" }] },
{
layers: [
{ type: "fill-color", color: "white" },
{ type: "image", path: "./assets/pano.jpg", resizeMode: "contain" },
],
},
{
layers: [
{ type: "fill-color", color: "white" },
{ type: "image", path: "./assets/vertical.jpg", resizeMode: "contain" },
],
},
{ layers: [{ type: "image", path: "./assets/pano.jpg", resizeMode: "cover" }] },
{ layers: [{ type: "image", path: "./assets/vertical.jpg", resizeMode: "cover" }] },
{ layers: [{ type: "image", path: "./assets/pano.jpg", resizeMode: "stretch" }] },
{ layers: [{ type: "image", path: "./assets/vertical.jpg", resizeMode: "stretch" }] },
],
}