-
-
Notifications
You must be signed in to change notification settings - Fork 316
/
Copy pathvideos.json5
75 lines (75 loc) · 1.59 KB
/
videos.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
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
74
75
{
width: 600,
height: 800,
outPath: "./videos.mp4",
defaults: {
transition: { duration: 0 },
layer: { fontPath: "./assets/Patua_One/PatuaOne-Regular.ttf" },
},
clips: [
{
duration: 2,
layers: [
{
type: "title-background",
text: "Editly can handle all formats and sizes with different fits",
background: { type: "radial-gradient" },
},
],
},
{
layers: [
{
type: "video",
path: "./assets/palawan.mp4",
cutFrom: 0,
cutTo: 2,
resizeMode: "contain",
},
{ type: "title", text: "Contain" },
],
},
{
layers: [
{
type: "video",
path: "./assets/palawan.mp4",
cutFrom: 0,
cutTo: 2,
resizeMode: "contain-blur",
},
{ type: "title", text: "Contain (blur)" },
],
},
{
layers: [
{
type: "video",
path: "./assets/IMG_1884.MOV",
cutFrom: 0,
cutTo: 2,
resizeMode: "contain-blur",
},
{ type: "title", text: "Contain\n(blur, vertical)" },
],
},
{
layers: [
{
type: "video",
path: "./assets/palawan.mp4",
cutFrom: 0,
cutTo: 2,
resizeMode: "stretch",
},
{ type: "title", text: "Stretch" },
],
},
{
layers: [
{ type: "video", path: "./assets/palawan.mp4", cutFrom: 0, cutTo: 2, resizeMode: "cover" },
{ type: "title", text: "Cover" },
],
},
],
}