mulmocast 2.0.8 → 2.1.0
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/lib/actions/movie.d.ts +29 -2
- package/lib/actions/movie.js +243 -91
- package/lib/methods/mulmo_presentation_style.d.ts +4 -3
- package/lib/methods/mulmo_presentation_style.js +7 -1
- package/lib/types/schema.d.ts +202 -31
- package/lib/types/schema.js +27 -13
- package/lib/types/schema_video_filter.d.ts +423 -0
- package/lib/types/schema_video_filter.js +253 -0
- package/lib/types/type.d.ts +2 -1
- package/lib/utils/context.d.ts +11 -3
- package/lib/utils/ffmpeg_utils.js +2 -2
- package/lib/utils/provider2agent.d.ts +4 -0
- package/lib/utils/provider2agent.js +5 -0
- package/lib/utils/utils.js +24 -55
- package/lib/utils/video_filter.d.ts +7 -0
- package/lib/utils/video_filter.js +149 -0
- package/package.json +7 -7
- package/scripts/test/README.md +48 -48
- package/scripts/test/test_transition2.json +460 -0
- package/scripts/test/test_transition2.json~ +62 -0
- package/scripts/test/test_transition3.json +70 -0
- package/scripts/test/test_transition3.json~ +76 -0
- package/scripts/test/test_transition_no_audio.json +16 -0
- package/scripts/test/test_video_filters.json~ +227 -0
- package/scripts/test/test_wipe_simple.json +37 -0
- package/scripts/test/test_all_image.json~ +0 -45
- package/scripts/test/test_all_movie.json~ +0 -37
- package/scripts/test/test_all_tts.json~ +0 -83
- package/scripts/test/test_audio_gemini.json~ +0 -67
- package/scripts/test/test_genai2.json~ +0 -84
- package/scripts/test/test_genai_movie.json~ +0 -22
- package/scripts/test/test_kotodama.json~ +0 -0
- package/scripts/test/test_lipsync2.json~ +0 -24
- package/scripts/test/test_movie2.json~ +0 -40
- package/scripts/test/test_play_to_end.json~ +0 -65
|
@@ -0,0 +1,227 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"lang": "en",
|
|
6
|
+
"title": "Video Filter Test",
|
|
7
|
+
"speechParams": {
|
|
8
|
+
"speakers": {
|
|
9
|
+
"Presenter": {
|
|
10
|
+
"voiceId": "shimmer",
|
|
11
|
+
"displayName": {
|
|
12
|
+
"en": "Presenter"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"beats": [
|
|
18
|
+
{
|
|
19
|
+
"speaker": "Presenter",
|
|
20
|
+
"text": "Original.",
|
|
21
|
+
"image": {
|
|
22
|
+
"type": "movie",
|
|
23
|
+
"source": {
|
|
24
|
+
"kind": "url",
|
|
25
|
+
"url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"speaker": "Presenter",
|
|
31
|
+
"text": "Mono filter.",
|
|
32
|
+
"movieParams": {
|
|
33
|
+
"filters": [
|
|
34
|
+
{
|
|
35
|
+
"type": "mono"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"image": {
|
|
40
|
+
"type": "movie",
|
|
41
|
+
"source": {
|
|
42
|
+
"kind": "url",
|
|
43
|
+
"url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"speaker": "Presenter",
|
|
49
|
+
"text": "Sepia filter.",
|
|
50
|
+
"movieParams": {
|
|
51
|
+
"filters": [
|
|
52
|
+
{
|
|
53
|
+
"type": "sepia"
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
"image": {
|
|
58
|
+
"type": "movie",
|
|
59
|
+
"source": {
|
|
60
|
+
"kind": "url",
|
|
61
|
+
"url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"speaker": "Presenter",
|
|
67
|
+
"text": "Brightness and contrast filter.",
|
|
68
|
+
"movieParams": {
|
|
69
|
+
"filters": [
|
|
70
|
+
{
|
|
71
|
+
"type": "brightness_contrast",
|
|
72
|
+
"brightness": 0.05,
|
|
73
|
+
"contrast": 1.3
|
|
74
|
+
}
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
"image": {
|
|
78
|
+
"type": "movie",
|
|
79
|
+
"source": {
|
|
80
|
+
"kind": "url",
|
|
81
|
+
"url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"speaker": "Presenter",
|
|
87
|
+
"text": "Box blur filter.",
|
|
88
|
+
"movieParams": {
|
|
89
|
+
"filters": [
|
|
90
|
+
{
|
|
91
|
+
"type": "blur",
|
|
92
|
+
"radius": 10,
|
|
93
|
+
"power": 1
|
|
94
|
+
}
|
|
95
|
+
]
|
|
96
|
+
},
|
|
97
|
+
"image": {
|
|
98
|
+
"type": "movie",
|
|
99
|
+
"source": {
|
|
100
|
+
"kind": "url",
|
|
101
|
+
"url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"speaker": "Presenter",
|
|
107
|
+
"text": "Gaussian blur filter.",
|
|
108
|
+
"movieParams": {
|
|
109
|
+
"filters": [
|
|
110
|
+
{
|
|
111
|
+
"type": "gblur",
|
|
112
|
+
"sigma": 30
|
|
113
|
+
}
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
"image": {
|
|
117
|
+
"type": "movie",
|
|
118
|
+
"source": {
|
|
119
|
+
"kind": "url",
|
|
120
|
+
"url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"speaker": "Presenter",
|
|
126
|
+
"text": "Glitch noise filter.",
|
|
127
|
+
"movieParams": {
|
|
128
|
+
"filters": [
|
|
129
|
+
{
|
|
130
|
+
"type": "glitch",
|
|
131
|
+
"intensity": 20,
|
|
132
|
+
"style": "noise"
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
},
|
|
136
|
+
"image": {
|
|
137
|
+
"type": "movie",
|
|
138
|
+
"source": {
|
|
139
|
+
"kind": "url",
|
|
140
|
+
"url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"speaker": "Presenter",
|
|
146
|
+
"text": "Glitch blend filter.",
|
|
147
|
+
"movieParams": {
|
|
148
|
+
"filters": [
|
|
149
|
+
{
|
|
150
|
+
"type": "glitch",
|
|
151
|
+
"intensity": 40,
|
|
152
|
+
"style": "blend"
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
"image": {
|
|
157
|
+
"type": "movie",
|
|
158
|
+
"source": {
|
|
159
|
+
"kind": "url",
|
|
160
|
+
"url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"speaker": "Presenter",
|
|
166
|
+
"text": "Grain filter.",
|
|
167
|
+
"movieParams": {
|
|
168
|
+
"filters": [
|
|
169
|
+
{
|
|
170
|
+
"type": "grain",
|
|
171
|
+
"intensity": 10
|
|
172
|
+
}
|
|
173
|
+
]
|
|
174
|
+
},
|
|
175
|
+
"image": {
|
|
176
|
+
"type": "movie",
|
|
177
|
+
"source": {
|
|
178
|
+
"kind": "url",
|
|
179
|
+
"url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"speaker": "Presenter",
|
|
185
|
+
"text": "Combined contrast and grain filters.",
|
|
186
|
+
"movieParams": {
|
|
187
|
+
"filters": [
|
|
188
|
+
{
|
|
189
|
+
"type": "brightness_contrast",
|
|
190
|
+
"brightness": 0,
|
|
191
|
+
"contrast": 1.2
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"type": "grain",
|
|
195
|
+
"intensity": 6
|
|
196
|
+
}
|
|
197
|
+
]
|
|
198
|
+
},
|
|
199
|
+
"image": {
|
|
200
|
+
"type": "movie",
|
|
201
|
+
"source": {
|
|
202
|
+
"kind": "url",
|
|
203
|
+
"url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"speaker": "Presenter",
|
|
209
|
+
"text": "Custom horizontal flip filter.",
|
|
210
|
+
"movieParams": {
|
|
211
|
+
"filters": [
|
|
212
|
+
{
|
|
213
|
+
"type": "custom",
|
|
214
|
+
"filter": "hflip"
|
|
215
|
+
}
|
|
216
|
+
]
|
|
217
|
+
},
|
|
218
|
+
"image": {
|
|
219
|
+
"type": "movie",
|
|
220
|
+
"source": {
|
|
221
|
+
"kind": "url",
|
|
222
|
+
"url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
]
|
|
227
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"lang": "en",
|
|
6
|
+
"title": "Wipe Test",
|
|
7
|
+
"beats": [
|
|
8
|
+
{
|
|
9
|
+
"speaker": "Presenter",
|
|
10
|
+
"text": "",
|
|
11
|
+
"duration": 1,
|
|
12
|
+
"image": {
|
|
13
|
+
"type": "textSlide",
|
|
14
|
+
"slide": {
|
|
15
|
+
"title": "First"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"speaker": "Presenter",
|
|
21
|
+
"text": "",
|
|
22
|
+
"duration": 1,
|
|
23
|
+
"movieParams": {
|
|
24
|
+
"transition": {
|
|
25
|
+
"type": "wipeleft",
|
|
26
|
+
"duration": 0.5
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"image": {
|
|
30
|
+
"type": "textSlide",
|
|
31
|
+
"slide": {
|
|
32
|
+
"title": "Second"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$mulmocast": {
|
|
3
|
-
"version": "1.1"
|
|
4
|
-
},
|
|
5
|
-
"lang": "ja",
|
|
6
|
-
"title": "All Image Providers Test",
|
|
7
|
-
"imageParams": {
|
|
8
|
-
"canvasSize": {
|
|
9
|
-
"width": 1024,
|
|
10
|
-
"height": 1024
|
|
11
|
-
}
|
|
12
|
-
},
|
|
13
|
-
"beats": [
|
|
14
|
-
{
|
|
15
|
-
"speaker": "Presenter",
|
|
16
|
-
"text": "こんにちは、テストです。",
|
|
17
|
-
"image": {
|
|
18
|
-
"type": "generated",
|
|
19
|
-
"prompt": "美しい日本庭園",
|
|
20
|
-
"provider": "openai",
|
|
21
|
-
"model": "gpt-image-1"
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"speaker": "Presenter",
|
|
26
|
-
"text": "こんにちは、テストです。",
|
|
27
|
-
"image": {
|
|
28
|
-
"type": "generated",
|
|
29
|
-
"prompt": "美しい日本庭園",
|
|
30
|
-
"provider": "google",
|
|
31
|
-
"model": "gemini-2.5-flash-image"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"speaker": "Presenter",
|
|
36
|
-
"text": "こんにちは、テストです。",
|
|
37
|
-
"image": {
|
|
38
|
-
"type": "generated",
|
|
39
|
-
"prompt": "美しい日本庭園",
|
|
40
|
-
"provider": "replicate",
|
|
41
|
-
"model": "bytedance/seedream-4"
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
]
|
|
45
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$mulmocast": {
|
|
3
|
-
"version": "1.1"
|
|
4
|
-
},
|
|
5
|
-
"lang": "ja",
|
|
6
|
-
"title": "All Movie Providers Test",
|
|
7
|
-
"imageParams": {
|
|
8
|
-
"canvasSize": {
|
|
9
|
-
"width": 1280,
|
|
10
|
-
"height": 720
|
|
11
|
-
}
|
|
12
|
-
},
|
|
13
|
-
"beats": [
|
|
14
|
-
{
|
|
15
|
-
"speaker": "Presenter",
|
|
16
|
-
"text": "こんにちは、テストです。",
|
|
17
|
-
"image": {
|
|
18
|
-
"type": "movie",
|
|
19
|
-
"prompt": "美しい日本庭園を散歩するカメラワーク",
|
|
20
|
-
"provider": "google",
|
|
21
|
-
"model": "veo-2.0-generate-001",
|
|
22
|
-
"duration": 5
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"speaker": "Presenter",
|
|
27
|
-
"text": "こんにちは、テストです。",
|
|
28
|
-
"image": {
|
|
29
|
-
"type": "movie",
|
|
30
|
-
"prompt": "美しい日本庭園を散歩するカメラワーク",
|
|
31
|
-
"provider": "replicate",
|
|
32
|
-
"model": "bytedance/seedance-1-lite",
|
|
33
|
-
"duration": 5
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
]
|
|
37
|
-
}
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$mulmocast": {
|
|
3
|
-
"version": "1.1"
|
|
4
|
-
},
|
|
5
|
-
"lang": "ja",
|
|
6
|
-
"title": "All TTS Providers Test",
|
|
7
|
-
"speechParams": {
|
|
8
|
-
"speakers": {
|
|
9
|
-
"OpenAI": {
|
|
10
|
-
"provider": "openai",
|
|
11
|
-
"voiceId": "shimmer"
|
|
12
|
-
},
|
|
13
|
-
"Gemini": {
|
|
14
|
-
"provider": "gemini",
|
|
15
|
-
"voiceId": "Kore"
|
|
16
|
-
},
|
|
17
|
-
"Google": {
|
|
18
|
-
"provider": "google",
|
|
19
|
-
"voiceId": "ja-JP-Standard-A"
|
|
20
|
-
},
|
|
21
|
-
"ElevenLabs": {
|
|
22
|
-
"provider": "elevenlabs",
|
|
23
|
-
"voiceId": "3JDquces8E8bkmvbh6Bc"
|
|
24
|
-
},
|
|
25
|
-
"Nijivoice": {
|
|
26
|
-
"provider": "nijivoice",
|
|
27
|
-
"voiceId": "231e0170-0ece-4155-be44-231423062f41"
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
"beats": [
|
|
32
|
-
{
|
|
33
|
-
"speaker": "OpenAI",
|
|
34
|
-
"text": "こんにちは、テストです。",
|
|
35
|
-
"image": {
|
|
36
|
-
"type": "textSlide",
|
|
37
|
-
"slide": {
|
|
38
|
-
"title": "OpenAI TTS"
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
{
|
|
43
|
-
"speaker": "Gemini",
|
|
44
|
-
"text": "こんにちは、テストです。",
|
|
45
|
-
"image": {
|
|
46
|
-
"type": "textSlide",
|
|
47
|
-
"slide": {
|
|
48
|
-
"title": "Gemini TTS"
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"speaker": "Google",
|
|
54
|
-
"text": "こんにちは、テストです。",
|
|
55
|
-
"image": {
|
|
56
|
-
"type": "textSlide",
|
|
57
|
-
"slide": {
|
|
58
|
-
"title": "Google TTS"
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"speaker": "ElevenLabs",
|
|
64
|
-
"text": "こんにちは、テストです。",
|
|
65
|
-
"image": {
|
|
66
|
-
"type": "textSlide",
|
|
67
|
-
"slide": {
|
|
68
|
-
"title": "ElevenLabs TTS"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"speaker": "Nijivoice",
|
|
74
|
-
"text": "こんにちは、テストです。",
|
|
75
|
-
"image": {
|
|
76
|
-
"type": "textSlide",
|
|
77
|
-
"slide": {
|
|
78
|
-
"title": "Nijivoice TTS"
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
]
|
|
83
|
-
}
|
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$mulmocast": {
|
|
3
|
-
"version": "1.1"
|
|
4
|
-
},
|
|
5
|
-
"lang": "en",
|
|
6
|
-
"title": "Audio Instructions Test",
|
|
7
|
-
"speechParams": {
|
|
8
|
-
"speakers": {
|
|
9
|
-
"Presenter": {
|
|
10
|
-
"provider": "google",
|
|
11
|
-
"voiceId": "ja-JP-Standard-A"
|
|
12
|
-
},
|
|
13
|
-
"Presenter2": {
|
|
14
|
-
"provider": "google",
|
|
15
|
-
"voiceId": "ja-JP-Standard-B"
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
"beats": [
|
|
20
|
-
{
|
|
21
|
-
"speaker": "Presenter",
|
|
22
|
-
"text": "Hello, I'm a presenter. I have no instructions.",
|
|
23
|
-
"image": {
|
|
24
|
-
"type": "textSlide",
|
|
25
|
-
"slide": {
|
|
26
|
-
"title": "Presenter"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"speaker": "Presenter2",
|
|
32
|
-
"text": "Hello, I'm a presenter 2. My instructions are 'Speak in a cheerful and positive tone'.",
|
|
33
|
-
"image": {
|
|
34
|
-
"type": "textSlide",
|
|
35
|
-
"slide": {
|
|
36
|
-
"title": "Presenter 2"
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"speaker": "Presenter",
|
|
42
|
-
"text": "Hello, I'm a presenter. I have a British English instruction.",
|
|
43
|
-
"speechOptions": {
|
|
44
|
-
"instruction": "Speak in British English."
|
|
45
|
-
},
|
|
46
|
-
"image": {
|
|
47
|
-
"type": "textSlide",
|
|
48
|
-
"slide": {
|
|
49
|
-
"title": "Presenter with British English instruction"
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"speaker": "Presenter",
|
|
55
|
-
"text": "Hello, I'm a presenter. I have a whisper instruction.",
|
|
56
|
-
"speechOptions": {
|
|
57
|
-
"instruction": "Whisper softly, like a pillow talk."
|
|
58
|
-
},
|
|
59
|
-
"image": {
|
|
60
|
-
"type": "textSlide",
|
|
61
|
-
"slide": {
|
|
62
|
-
"title": "Presenter with whisper instruction"
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
]
|
|
67
|
-
}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$mulmocast": { "version": "1.1" },
|
|
3
|
-
"imageParams": {
|
|
4
|
-
"provider": "google",
|
|
5
|
-
"style": "<style>Photo realistic.</style>"
|
|
6
|
-
},
|
|
7
|
-
"movieParams": {
|
|
8
|
-
"provider": "google"
|
|
9
|
-
},
|
|
10
|
-
"lang": "en",
|
|
11
|
-
"beats": [
|
|
12
|
-
{
|
|
13
|
-
"id": "gemini_3_pro_image_preview",
|
|
14
|
-
"text": "image generated by gemini-3-pro-image-preview",
|
|
15
|
-
"imagePrompt": "a woman is walking through a busy Tokyo street at night, she is wearing dark sunglasses",
|
|
16
|
-
"imageParams": {
|
|
17
|
-
"model": "gemini-3-pro-image-preview"
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"id": "gemini_2_5_flash_image",
|
|
22
|
-
"text": "image generated by gemini-2.5-flash-image",
|
|
23
|
-
"imagePrompt": "a woman is walking through a busy Tokyo street at night, she is wearing dark sunglasses",
|
|
24
|
-
"imageParams": {
|
|
25
|
-
"model": "gemini-2.5-flash-image"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"id": "imagen_4",
|
|
30
|
-
"text": "image generated by imagen-4",
|
|
31
|
-
"imagePrompt": "a woman is walking through a busy Tokyo street at night, she is wearing dark sunglasses"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"id": "imagen_4_ultra",
|
|
35
|
-
"text": "image generated by imagen-4",
|
|
36
|
-
"imagePrompt": "a woman is walking through a busy Tokyo street at night, she is wearing dark sunglasses",
|
|
37
|
-
"imageParams": {
|
|
38
|
-
"model": "imagen-4.0-ultra-generate-preview-06-06"
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"id": "genai_veo2",
|
|
43
|
-
"text": "movie generated by veo2",
|
|
44
|
-
"duration": 5,
|
|
45
|
-
"moviePrompt": "a woman is walking through a busy Tokyo street at night, she is wearing dark sunglasses"
|
|
46
|
-
},
|
|
47
|
-
{
|
|
48
|
-
"id": "genai_veo2_image",
|
|
49
|
-
"text": "movie generated by veo2 with image",
|
|
50
|
-
"duration": 5,
|
|
51
|
-
"imagePrompt": "a woman is walking through a busy Tokyo street at night, she is wearing dark sunglasses",
|
|
52
|
-
"moviePrompt": "a woman takes a selfie with her phone"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"id": "genai_veo3",
|
|
56
|
-
"text": "movie generated by veo3",
|
|
57
|
-
"moviePrompt": "a woman is walking through a busy Tokyo street at night, she is wearing dark sunglasses",
|
|
58
|
-
"movieParams": {
|
|
59
|
-
"model": "veo-3.0-generate-001"
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"id": "genai_veo3_1",
|
|
64
|
-
"text": "movie generated by veo3_1",
|
|
65
|
-
"moviePrompt": "a woman is walking through a busy Tokyo street at night, she is wearing dark sunglasses",
|
|
66
|
-
"movieParams": {
|
|
67
|
-
"model": "veo-3.1-generate-preview"
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
"id": "genai_veo3_image",
|
|
72
|
-
"text": "movie generated by veo3",
|
|
73
|
-
"duration": 5,
|
|
74
|
-
"imagePrompt": "a woman is walking through a busy Tokyo street at night, she is wearing dark sunglasses",
|
|
75
|
-
"imageParams": {
|
|
76
|
-
"model": "gemini-2.5-flash-image"
|
|
77
|
-
},
|
|
78
|
-
"moviePrompt": "a woman is walking through a busy Tokyo street at night, she is wearing dark sunglasses",
|
|
79
|
-
"movieParams": {
|
|
80
|
-
"model": "veo-3.0-generate-001"
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
]
|
|
84
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$mulmocast": { "version": "1.1" },
|
|
3
|
-
"imageParams": {
|
|
4
|
-
"provider": "google",
|
|
5
|
-
"style": "<style>Photo realistic.</style>"
|
|
6
|
-
},
|
|
7
|
-
"canvasSize": {
|
|
8
|
-
"width": 720,
|
|
9
|
-
"height": 1280
|
|
10
|
-
},
|
|
11
|
-
"lang": "en",
|
|
12
|
-
"movieParams": {
|
|
13
|
-
"provider": "google",
|
|
14
|
-
"model": "veo-3.1-generate-preview"
|
|
15
|
-
},
|
|
16
|
-
"beats": [
|
|
17
|
-
{
|
|
18
|
-
"moviePrompt": "A butterfly flying in slow motion",
|
|
19
|
-
"duration": 20
|
|
20
|
-
}
|
|
21
|
-
]
|
|
22
|
-
}
|
|
File without changes
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$mulmocast": {
|
|
3
|
-
"version": "1.1"
|
|
4
|
-
},
|
|
5
|
-
"lang": "en",
|
|
6
|
-
"movieParams": {
|
|
7
|
-
"provider": "google"
|
|
8
|
-
},
|
|
9
|
-
"lipSyncParams": {
|
|
10
|
-
"provider": "replicate",
|
|
11
|
-
"model": "bytedance/latentsync"
|
|
12
|
-
},
|
|
13
|
-
"canvasSize": {
|
|
14
|
-
"width": 1280,
|
|
15
|
-
"height": 720
|
|
16
|
-
},
|
|
17
|
-
"beats": [
|
|
18
|
-
{
|
|
19
|
-
"text": "Hello, I'm macoro. Hello, I'm macoro. Hello, I'm macoro.",
|
|
20
|
-
"moviePrompt": "macoro is speaking",
|
|
21
|
-
"enableLipSync": true
|
|
22
|
-
}
|
|
23
|
-
]
|
|
24
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$mulmocast": {
|
|
3
|
-
"version": "1.1"
|
|
4
|
-
},
|
|
5
|
-
"lang": "en",
|
|
6
|
-
"movieParams": {
|
|
7
|
-
"provider": "google"
|
|
8
|
-
},
|
|
9
|
-
"canvasSize": {
|
|
10
|
-
"width": 720,
|
|
11
|
-
"height": 1280
|
|
12
|
-
},
|
|
13
|
-
"imageParams": {
|
|
14
|
-
"provider": "openai",
|
|
15
|
-
"model": "dall-e-3",
|
|
16
|
-
"style": "Photo realistic, cinematic style.",
|
|
17
|
-
"images": {
|
|
18
|
-
"optimus": {
|
|
19
|
-
"type": "image",
|
|
20
|
-
"source": {
|
|
21
|
-
"kind": "url",
|
|
22
|
-
"url": "https://raw.githubusercontent.com/receptron/mulmocast-media/refs/heads/main/characters/optimus.png"
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
"beats": [
|
|
28
|
-
{
|
|
29
|
-
"text": "Image with both image and movie prompt",
|
|
30
|
-
"imagePrompt": "巨大なロケット「Starship」が発射台から打ち上がろうとしている様子。空には星と火星が浮かんでいる。",
|
|
31
|
-
"moviePrompt": "Startship lifts off.",
|
|
32
|
-
"duration": 5
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"text": "Image with only movie prompt",
|
|
36
|
-
"moviePrompt": "Startship lifts off.",
|
|
37
|
-
"duration": 5
|
|
38
|
-
}
|
|
39
|
-
]
|
|
40
|
-
}
|