mulmocast 1.1.3 → 1.1.5

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.
Files changed (56) hide show
  1. package/lib/actions/audio.d.ts +0 -1
  2. package/lib/actions/audio.js +8 -12
  3. package/lib/actions/images.js +1 -0
  4. package/lib/actions/movie.js +1 -3
  5. package/lib/agents/image_openai_agent.js +4 -1
  6. package/lib/data/index.d.ts +1 -0
  7. package/lib/data/index.js +1 -0
  8. package/lib/data/templateDataSet.d.ts +25 -0
  9. package/lib/data/templateDataSet.js +97 -0
  10. package/lib/methods/mulmo_presentation_style.d.ts +2 -3
  11. package/lib/methods/mulmo_presentation_style.js +14 -8
  12. package/lib/types/agent.d.ts +3 -0
  13. package/lib/types/schema.d.ts +704 -0
  14. package/lib/types/schema.js +5 -1
  15. package/lib/utils/context.d.ts +25 -0
  16. package/lib/utils/file.d.ts +1 -1
  17. package/lib/utils/file.js +5 -2
  18. package/lib/utils/preprocess.d.ts +13 -0
  19. package/package.json +4 -3
  20. package/scripts/templates/image_prompt_only_template.ts +95 -0
  21. package/scripts/test/gpt.json +32 -0
  22. package/scripts/test/mulmo_story.json +11 -0
  23. package/scripts/test/test.json +64 -0
  24. package/scripts/test/test1.json +40 -0
  25. package/scripts/test/test2.json +66 -0
  26. package/scripts/test/test_audio.json +151 -0
  27. package/scripts/test/test_audio_instructions.json +69 -0
  28. package/scripts/test/test_beats.json +58 -0
  29. package/scripts/test/test_captions.json +52 -0
  30. package/scripts/test/test_elevenlabs_models.json +193 -0
  31. package/scripts/test/test_en.json +29 -0
  32. package/scripts/test/test_hello.json +17 -0
  33. package/scripts/test/test_hello_google.json +25 -0
  34. package/scripts/test/test_html.json +66 -0
  35. package/scripts/test/test_image_refs.json +49 -0
  36. package/scripts/test/test_images.json +48 -0
  37. package/scripts/test/test_lang.json +31 -0
  38. package/scripts/test/test_layout.json +152 -0
  39. package/scripts/test/test_lipsync.json +53 -0
  40. package/scripts/test/test_loop.json +34 -0
  41. package/scripts/test/test_media.json +244 -0
  42. package/scripts/test/test_mixed_providers.json +91 -0
  43. package/scripts/test/test_movie.json +39 -0
  44. package/scripts/test/test_no_audio.json +252 -0
  45. package/scripts/test/test_no_audio_with_credit.json +253 -0
  46. package/scripts/test/test_order.json +68 -0
  47. package/scripts/test/test_order_portrait.json +72 -0
  48. package/scripts/test/test_replicate.json +126 -0
  49. package/scripts/test/test_slideout_left_no_audio.json +45 -0
  50. package/scripts/test/test_sound_effect.json +41 -0
  51. package/scripts/test/test_spillover.json +116 -0
  52. package/scripts/test/test_transition.json +55 -0
  53. package/scripts/test/test_transition_no_audio.json +45 -0
  54. package/scripts/test/test_video_speed.json +80 -0
  55. package/scripts/test/test_voice_over.json +104 -0
  56. package/scripts/test/test_voices.json +54 -0
@@ -0,0 +1,152 @@
1
+ {
2
+ "$mulmocast": {
3
+ "version": "1.1"
4
+ },
5
+ "title": "Layout Test",
6
+ "audioParams": {
7
+ "introPadding": 0,
8
+ "padding": 0.1,
9
+ "closingPadding": 0,
10
+ "outroPadding": 0
11
+ },
12
+ "beats": [
13
+ {
14
+ "text": "",
15
+ "image": {
16
+ "type": "textSlide",
17
+ "slide": {
18
+ "title": "Title Only"
19
+ }
20
+ }
21
+ },
22
+ {
23
+ "text": "",
24
+ "image": {
25
+ "type": "textSlide",
26
+ "slide": {
27
+ "title": "Title",
28
+ "subtitle": "Subtitle"
29
+ }
30
+ }
31
+ },
32
+ {
33
+ "text": "",
34
+ "image": {
35
+ "type": "textSlide",
36
+ "slide": {
37
+ "title": "Human Evolution",
38
+ "bullets": [
39
+ "Early Primates",
40
+ "Hominids and Hominins",
41
+ "Australopithecus",
42
+ "Genus Homo Emerges",
43
+ "Homo erectus and Migration",
44
+ "Neanderthals and Other Archaic Humans",
45
+ "Homo sapiens"
46
+ ]
47
+ }
48
+ }
49
+ },
50
+ {
51
+ "text": "",
52
+ "image": {
53
+ "type": "markdown",
54
+ "markdown": [
55
+ "# Markdown Table Example",
56
+ "### Table",
57
+ "| Item | In Stock | Price |",
58
+ "| :---------------- | :------: | ----: |",
59
+ "| Python Hat | True | 23.99 |",
60
+ "| SQL Hat | True | 23.99 |",
61
+ "| Codecademy Tee | False | 19.99 |",
62
+ "| Codecademy Hoodie | False | 42.99 |"
63
+ ]
64
+ }
65
+ },
66
+ {
67
+ "text": "",
68
+ "image": {
69
+ "type": "chart",
70
+ "title": "Sales and Profits (from Jan to June)",
71
+ "chartData": {
72
+ "type": "bar",
73
+ "data": {
74
+ "labels": ["January", "February", "March", "April", "May", "June"],
75
+ "datasets": [
76
+ {
77
+ "label": "Revenue ($1000s)",
78
+ "data": [120, 135, 180, 155, 170, 190],
79
+ "backgroundColor": "rgba(54, 162, 235, 0.1)",
80
+ "borderColor": "rgba(54, 162, 235, 1)",
81
+ "borderWidth": 1
82
+ },
83
+ {
84
+ "label": "Profit ($1000s)",
85
+ "data": [45, 52, 68, 53, 61, 73],
86
+ "backgroundColor": "rgba(75, 192, 192, 0.1)",
87
+ "borderColor": "rgba(75, 192, 192, 1)",
88
+ "borderWidth": 1
89
+ }
90
+ ]
91
+ },
92
+ "options": {
93
+ "responsive": true,
94
+ "animation": false
95
+ }
96
+ }
97
+ }
98
+ },
99
+ {
100
+ "text": "",
101
+ "image": {
102
+ "type": "chart",
103
+ "title": "Sales and Profits (from Jan to June)",
104
+ "chartData": {
105
+ "type": "pie",
106
+ "data": {
107
+ "labels": ["OpenAIと投資家の取り分", "マイクロソフトの取り分"],
108
+ "datasets": [
109
+ {
110
+ "data": [90, 10],
111
+ "backgroundColor": ["rgba(75, 192, 192, 0.5)", "rgba(54, 162, 235, 0.5)"],
112
+ "borderColor": ["rgba(75, 192, 192, 1)", "rgba(54, 162, 235, 1)"],
113
+ "borderWidth": 1
114
+ }
115
+ ]
116
+ },
117
+ "options": {
118
+ "responsive": true,
119
+ "animation": false,
120
+ "plugins": {
121
+ "legend": {
122
+ "position": "bottom"
123
+ }
124
+ }
125
+ }
126
+ }
127
+ }
128
+ },
129
+ {
130
+ "text": "",
131
+ "image": {
132
+ "type": "mermaid",
133
+ "title": "Business Process Flow",
134
+ "code": {
135
+ "kind": "text",
136
+ "text": "graph LR\n A[Market Research] --> B[Product Planning]\n B --> C[Development]\n C --> D[Testing]\n D --> E[Manufacturing]\n E --> F[Marketing]\n F --> G[Sales]\n G --> H[Customer Support]\n H --> A"
137
+ }
138
+ }
139
+ },
140
+ {
141
+ "text": "",
142
+ "image": {
143
+ "type": "mermaid",
144
+ "title": "Business Process Flow",
145
+ "code": {
146
+ "kind": "text",
147
+ "text": "graph TB\n A[Market Research] --> B[Product Planning]\n B --> C[Development]\n C --> D[Testing]\n D --> E[Manufacturing]\n E --> F[Marketing]\n F --> G[Sales]\n G --> H[Customer Support]\n H --> A"
148
+ }
149
+ }
150
+ }
151
+ ]
152
+ }
@@ -0,0 +1,53 @@
1
+ {
2
+ "$mulmocast": { "version": "1.1" },
3
+ "lipSyncParams": {
4
+ "provider": "replicate",
5
+ "model": "bytedance/latentsync"
6
+ },
7
+ "audioParams": {
8
+ "bgmVolume": 0.01,
9
+ "introPadding": 0,
10
+ "padding": 0.0
11
+ },
12
+ "lang": "en",
13
+ "beats": [
14
+ {
15
+ "id": "presenter_introduction",
16
+ "text": "Welcome to our presentation on artificial intelligence. Today we'll explore the fascinating world of machine learning.",
17
+ "moviePrompt": "A professional female presenter standing in front of a modern presentation screen, speaking confidently to an audience",
18
+ "enableLipSync": true
19
+ },
20
+ {
21
+ "id": "explaining_concepts",
22
+ "text": "Machine learning algorithms can process vast amounts of data to identify patterns and make predictions about future outcomes.",
23
+ "moviePrompt": "A close-up view of a female presenter explaining complex concepts with animated data visualizations and charts in the background",
24
+ "enableLipSync": true
25
+ },
26
+ {
27
+ "id": "real_world_examples",
28
+ "text": "From personalized recommendations on streaming services to fraud detection in banking, machine learning is already shaping our everyday lives.",
29
+ "imagePrompt": "A female presenter is hoding a phone in her hand.",
30
+ "moviePrompt": "Scenes a female presenter showing apps on smartphones, online shopping, and bank transactions, illustrating AI in real-world scenarios",
31
+ "enableLipSync": true,
32
+ "lipSyncParams": {
33
+ "model": "tmappdev/lipsync"
34
+ }
35
+ },
36
+ {
37
+ "id": "future_possibilities",
38
+ "text": "In the future, advancements in AI could revolutionize industries like healthcare, education, and transportation.",
39
+ "imagePrompt": "A female presenter is standing in front of a futuristic cityscape with AI-powered hospital and an autonomous vehicle.",
40
+ "moviePrompt": "A female presenter in a futuristic cityscape with AI-powered hospitals, autonomous vehicles, and interactive learning environments",
41
+ "enableLipSync": true,
42
+ "lipSyncParams": {
43
+ "model": "tmappdev/lipsync"
44
+ }
45
+ },
46
+ {
47
+ "id": "concluding_remarks",
48
+ "text": "Thank you for your attention. I hope this presentation has provided valuable insights into the world of artificial intelligence.",
49
+ "moviePrompt": "A female presenter concluding their talk with a warm smile, gesturing towards the audience in a modern conference room",
50
+ "enableLipSync": true
51
+ }
52
+ ]
53
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "$mulmocast": {
3
+ "version": "1.1",
4
+ "credit": "closing"
5
+ },
6
+ "audioParams": {
7
+ "bgm": {
8
+ "kind": "url",
9
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/bgms/theme001.mp3"
10
+ }
11
+ },
12
+ "title": "Loop Test",
13
+ "beats": [
14
+ {
15
+ "duration": 200,
16
+ "text": "This beat has a long duration.",
17
+ "image": {
18
+ "type": "textSlide",
19
+ "slide": {
20
+ "title": "Duration = 200"
21
+ }
22
+ }
23
+ },
24
+ {
25
+ "text": "This beat is the last beat before the credit.",
26
+ "image": {
27
+ "type": "textSlide",
28
+ "slide": {
29
+ "title": "No Duration"
30
+ }
31
+ }
32
+ }
33
+ ]
34
+ }
@@ -0,0 +1,244 @@
1
+ {
2
+ "$mulmocast": {
3
+ "version": "1.1"
4
+ },
5
+ "title": "Media Test",
6
+ "references": [
7
+ {
8
+ "url": "https://www.mulmocast.com",
9
+ "title": "Mulmocast",
10
+ "type": "article"
11
+ }
12
+ ],
13
+ "speechParams": {
14
+ "speakers": {
15
+ "Presenter": {
16
+ "voiceId": "shimmer",
17
+ "displayName": {
18
+ "en": "Presenter"
19
+ }
20
+ }
21
+ }
22
+ },
23
+ "beats": [
24
+ {
25
+ "id": "first",
26
+ "speaker": "Presenter",
27
+ "text": "This is a local image.",
28
+ "image": {
29
+ "type": "image",
30
+ "source": {
31
+ "kind": "path",
32
+ "path": "../../assets/images/mulmocast_credit.png"
33
+ }
34
+ }
35
+ },
36
+ {
37
+ "speaker": "Presenter",
38
+ "text": "This is a reference beat.",
39
+ "duration": 0.5,
40
+ "image": {
41
+ "type": "beat",
42
+ "id": "first"
43
+ }
44
+ },
45
+ {
46
+ "speaker": "Presenter",
47
+ "text": "",
48
+ "duration": 0.5,
49
+ "id": "{1A57B3F5-B6CB-4948-96BB-6F018DCCBBD4}",
50
+ "image": {
51
+ "type": "textSlide",
52
+ "slide": {
53
+ "title": "No Audio",
54
+ "bullets": ["0.5 seconds"]
55
+ }
56
+ }
57
+ },
58
+ {
59
+ "speaker": "Presenter",
60
+ "text": "This is a remote image.",
61
+ "image": {
62
+ "type": "image",
63
+ "source": {
64
+ "kind": "url",
65
+ "url": "https://raw.githubusercontent.com/receptron/mulmocast-cli/refs/heads/main/assets/images/mulmocast_credit.png"
66
+ }
67
+ }
68
+ },
69
+ {
70
+ "speaker": "Presenter",
71
+ "text": "",
72
+ "duration": 2,
73
+ "image": {
74
+ "type": "textSlide",
75
+ "slide": {
76
+ "title": "No Audio",
77
+ "bullets": ["2 seconds"]
78
+ }
79
+ }
80
+ },
81
+ {
82
+ "speaker": "Presenter",
83
+ "text": "This is a local movie with audio.",
84
+ "image": {
85
+ "type": "movie",
86
+ "source": {
87
+ "kind": "url",
88
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/test/pingpong.mov"
89
+ }
90
+ }
91
+ },
92
+ {
93
+ "speaker": "Presenter",
94
+ "text": "",
95
+ "image": {
96
+ "type": "textSlide",
97
+ "slide": {
98
+ "title": "Local Audio Test",
99
+ "bullets": ["Something"]
100
+ }
101
+ },
102
+ "audio": {
103
+ "type": "audio",
104
+ "source": {
105
+ "kind": "path",
106
+ "path": "../../assets/audio/local_voice.mp3"
107
+ }
108
+ }
109
+ },
110
+ {
111
+ "speaker": "Presenter",
112
+ "text": "This is a bulleted list in text slide format.",
113
+ "image": {
114
+ "type": "textSlide",
115
+ "slide": {
116
+ "title": "Human Evolution",
117
+ "bullets": [
118
+ "Early Primates",
119
+ "Hominids and Hominins",
120
+ "Australopithecus",
121
+ "Genus Homo Emerges",
122
+ "Homo erectus and Migration",
123
+ "Neanderthals and Other Archaic Humans",
124
+ "Homo sapiens"
125
+ ]
126
+ }
127
+ }
128
+ },
129
+ {
130
+ "speaker": "Presenter",
131
+ "text": "This is a table in markdown format.",
132
+ "image": {
133
+ "type": "markdown",
134
+ "markdown": [
135
+ "# Markdown Table Example",
136
+ "### Table",
137
+ "| Item | In Stock | Price |",
138
+ "| :---------------- | :------: | ----: |",
139
+ "| Python Hat | True | 23.99 |",
140
+ "| SQL Hat | True | 23.99 |",
141
+ "| Codecademy Tee | False | 19.99 |",
142
+ "| Codecademy Hoodie | False | 42.99 |",
143
+ "### Paragraph",
144
+ "This is a paragraph."
145
+ ]
146
+ }
147
+ },
148
+ {
149
+ "speaker": "Presenter",
150
+ "text": "This is a chart in chart format.",
151
+ "image": {
152
+ "type": "chart",
153
+ "title": "Sales and Profits (from Jan to June)",
154
+ "chartData": {
155
+ "type": "bar",
156
+ "data": {
157
+ "labels": ["January", "February", "March", "April", "May", "June"],
158
+ "datasets": [
159
+ {
160
+ "label": "Revenue ($1000s)",
161
+ "data": [120, 135, 180, 155, 170, 190],
162
+ "backgroundColor": "rgba(54, 162, 235, 0.5)",
163
+ "borderColor": "rgba(54, 162, 235, 1)",
164
+ "borderWidth": 1
165
+ },
166
+ {
167
+ "label": "Profit ($1000s)",
168
+ "data": [45, 52, 68, 53, 61, 73],
169
+ "backgroundColor": "rgba(75, 192, 192, 0.5)",
170
+ "borderColor": "rgba(75, 192, 192, 1)",
171
+ "borderWidth": 1
172
+ }
173
+ ]
174
+ },
175
+ "options": {
176
+ "responsive": true,
177
+ "animation": false
178
+ }
179
+ }
180
+ }
181
+ },
182
+ {
183
+ "speaker": "Presenter",
184
+ "text": "This is a diagram in mermaid format.",
185
+ "image": {
186
+ "type": "mermaid",
187
+ "title": "Business Process Flow",
188
+ "code": {
189
+ "kind": "text",
190
+ "text": "graph LR\n A[Market Research] --> B[Product Planning]\n B --> C[Development]\n C --> D[Testing]\n D --> E[Manufacturing]\n E --> F[Marketing]\n F --> G[Sales]\n G --> H[Customer Support]\n H --> A"
191
+ }
192
+ }
193
+ },
194
+ {
195
+ "speaker": "Presenter",
196
+ "text": "This is a tailwind html format.",
197
+ "image": {
198
+ "type": "html_tailwind",
199
+ "html": [
200
+ "<main class=\"flex-grow\">",
201
+ " <!-- Hero Section -->",
202
+ " <section class=\"bg-blue-600 text-white py-20\">",
203
+ " <div class=\"container mx-auto px-6 text-center\">",
204
+ " <h1 class=\"text-4xl md:text-5xl font-bold mb-4\">Welcome to Mulmocast</h1>",
205
+ " <p class=\"text-lg md:text-xl mb-8\">A modern web experience powered by Tailwind CSS</p>",
206
+ " <a href=\"#features\" class=\"bg-white text-blue-600 px-6 py-3 rounded-lg font-semibold shadow hover:bg-gray-100 transition\">",
207
+ " Learn More",
208
+ " </a>",
209
+ " </div>",
210
+ " </section>",
211
+ "",
212
+ " <!-- Features Section -->",
213
+ " <section id=\"features\" class=\"py-16 bg-gray-100\">",
214
+ " <div class=\"container mx-auto px-6\">",
215
+ " <div class=\"grid grid-cols-1 md:grid-cols-3 gap-8 text-center\">",
216
+ " <div>",
217
+ " <div class=\"text-blue-600 text-4xl mb-2\">⚡</div>",
218
+ " <h3 class=\"text-xl font-semibold mb-2\">Fast</h3>",
219
+ " <p class=\"text-gray-600\">Built with performance in mind using modern tools.</p>",
220
+ " </div>",
221
+ " <div>",
222
+ " <div class=\"text-blue-600 text-4xl mb-2\">🎨</div>",
223
+ " <h3 class=\"text-xl font-semibold mb-2\">Beautiful</h3>",
224
+ " <p class=\"text-gray-600\">Styled with Tailwind CSS for clean, responsive design.</p>",
225
+ " </div>",
226
+ " <div>",
227
+ " <div class=\"text-blue-600 text-4xl mb-2\">🚀</div>",
228
+ " <h3 class=\"text-xl font-semibold mb-2\">Launch Ready</h3>",
229
+ " <p class=\"text-gray-600\">Easy to deploy and extend for your next big idea.</p>",
230
+ " </div>",
231
+ " </div>",
232
+ " </div>",
233
+ " </section>",
234
+ "</main>",
235
+ "",
236
+ "<!-- Footer -->",
237
+ "<footer class=\"bg-white text-gray-500 text-center py-6 border-t\">",
238
+ " 2025 Mulmocast.",
239
+ "</footer>"
240
+ ]
241
+ }
242
+ }
243
+ ]
244
+ }
@@ -0,0 +1,91 @@
1
+ {
2
+ "$mulmocast": {
3
+ "version": "1.1"
4
+ },
5
+ "title": "Mixed Providers Test",
6
+ "description": "Testing multiple TTS providers for different speakers",
7
+ "speechParams": {
8
+ "speakers": {
9
+ "Presenter": {
10
+ "provider": "openai",
11
+ "voiceId": "shimmer",
12
+ "displayName": {
13
+ "en": "Main Presenter"
14
+ }
15
+ },
16
+ "Narrator": {
17
+ "voiceId": "en-US-Standard-A",
18
+ "provider": "google",
19
+ "displayName": {
20
+ "en": "Google Narrator"
21
+ }
22
+ },
23
+ "Expert": {
24
+ "voiceId": "21m00Tcm4TlvDq8ikWAM",
25
+ "provider": "elevenlabs",
26
+ "displayName": {
27
+ "en": "Expert Voice"
28
+ }
29
+ },
30
+ "Host": {
31
+ "voiceId": "3708ad43-cace-486c-a4ca-8fe41186e20c",
32
+ "provider": "nijivoice",
33
+ "displayName": {
34
+ "en": "Japanese Host"
35
+ }
36
+ }
37
+ }
38
+ },
39
+ "audioParams": {
40
+ "padding": 0.5,
41
+ "introPadding": 1.0,
42
+ "closingPadding": 1.0,
43
+ "outroPadding": 1.0
44
+ },
45
+ "beats": [
46
+ {
47
+ "speaker": "Presenter",
48
+ "text": "Welcome to our presentation. I'm using OpenAI's default provider.",
49
+ "image": {
50
+ "type": "textSlide",
51
+ "slide": {
52
+ "title": "Mixed Provider Demo",
53
+ "subtitle": "OpenAI Speaker"
54
+ }
55
+ }
56
+ },
57
+ {
58
+ "speaker": "Narrator",
59
+ "text": "And I'm the narrator, using Google's text-to-speech service.",
60
+ "image": {
61
+ "type": "textSlide",
62
+ "slide": {
63
+ "title": "Mixed Provider Demo",
64
+ "subtitle": "Google Speaker"
65
+ }
66
+ }
67
+ },
68
+ {
69
+ "speaker": "Expert",
70
+ "text": "Finally, I'm the expert using ElevenLabs for premium voice quality.",
71
+ "image": {
72
+ "type": "textSlide",
73
+ "slide": {
74
+ "title": "Mixed Provider Demo",
75
+ "subtitle": "ElevenLabs Speaker"
76
+ }
77
+ }
78
+ },
79
+ {
80
+ "speaker": "Host",
81
+ "text": "そして私は、日本語音声合成のためのNijivoiceを使用するホストです。",
82
+ "image": {
83
+ "type": "textSlide",
84
+ "slide": {
85
+ "title": "Mixed Provider Demo",
86
+ "subtitle": "Nijivoice Speaker (Japanese)"
87
+ }
88
+ }
89
+ }
90
+ ]
91
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "$mulmocast": {
3
+ "version": "1.1"
4
+ },
5
+ "movieParams": {
6
+ "provider": "google"
7
+ },
8
+ "canvasSize": {
9
+ "width": 720,
10
+ "height": 1280
11
+ },
12
+ "imageParams": {
13
+ "provider": "openai",
14
+ "model": "dall-e-3",
15
+ "style": "Photo realistic, cinematic style.",
16
+ "images": {
17
+ "optimus": {
18
+ "type": "image",
19
+ "source": {
20
+ "kind": "url",
21
+ "url": "https://raw.githubusercontent.com/receptron/mulmocast-media/refs/heads/main/characters/optimus.png"
22
+ }
23
+ }
24
+ }
25
+ },
26
+ "beats": [
27
+ {
28
+ "text": "Image with both image and movie prompt",
29
+ "imagePrompt": "巨大なロケット「Starship」が発射台から打ち上がろうとしている様子。空には星と火星が浮かんでいる。",
30
+ "moviePrompt": "Startship lifts off.",
31
+ "duration": 5
32
+ },
33
+ {
34
+ "text": "Image with only movie prompt",
35
+ "moviePrompt": "Startship lifts off.",
36
+ "duration": 5
37
+ }
38
+ ]
39
+ }