mulmocast 1.1.1 → 1.1.2

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 (61) hide show
  1. package/assets/templates/akira_comic.json +1 -1
  2. package/assets/templates/ani.json +1 -1
  3. package/assets/templates/ani_ja.json +1 -1
  4. package/assets/templates/business.json +1 -1
  5. package/assets/templates/characters.json +1 -1
  6. package/assets/templates/children_book.json +1 -1
  7. package/assets/templates/coding.json +1 -1
  8. package/assets/templates/comic_strips.json +1 -1
  9. package/assets/templates/drslump_comic.json +1 -1
  10. package/assets/templates/ghibli_comic.json +1 -1
  11. package/assets/templates/ghibli_image_only.json +1 -1
  12. package/assets/templates/ghibli_shorts.json +1 -1
  13. package/assets/templates/ghost_comic.json +1 -1
  14. package/assets/templates/html.json +1 -1
  15. package/assets/templates/onepiece_comic.json +1 -1
  16. package/assets/templates/portrait_movie.json +1 -1
  17. package/assets/templates/realistic_movie.json +1 -1
  18. package/assets/templates/sensei_and_taro.json +1 -1
  19. package/assets/templates/shorts.json +1 -1
  20. package/assets/templates/text_and_image.json +1 -1
  21. package/assets/templates/text_only.json +1 -1
  22. package/assets/templates/trailer.json +1 -1
  23. package/lib/actions/image_agents.d.ts +3 -0
  24. package/lib/actions/image_agents.js +3 -1
  25. package/lib/actions/images.js +5 -5
  26. package/lib/agents/lipsync_replicate_agent.js +19 -4
  27. package/lib/agents/movie_replicate_agent.js +10 -1
  28. package/lib/cli/commands/tool/prompt/builder.js +2 -2
  29. package/lib/cli/commands/tool/scripting/builder.js +2 -2
  30. package/lib/cli/commands/tool/story_to_script/builder.js +2 -2
  31. package/lib/data/promptTemplates.d.ts +48 -294
  32. package/lib/data/promptTemplates.js +25 -411
  33. package/lib/data/scriptTemplates.d.ts +575 -151
  34. package/lib/data/scriptTemplates.js +956 -437
  35. package/lib/index.common.d.ts +1 -0
  36. package/lib/index.common.js +1 -0
  37. package/lib/methods/index.d.ts +0 -1
  38. package/lib/methods/index.js +0 -1
  39. package/lib/methods/mulmo_presentation_style.d.ts +2 -0
  40. package/lib/methods/mulmo_script_template.d.ts +2 -2
  41. package/lib/tools/create_mulmo_script_from_url.js +14 -2
  42. package/lib/tools/create_mulmo_script_interactively.js +2 -1
  43. package/lib/tools/dump_prompt.js +1 -1
  44. package/lib/tools/story_to_script.js +5 -4
  45. package/lib/types/schema.d.ts +92 -92
  46. package/lib/types/schema.js +2 -2
  47. package/lib/types/type.d.ts +3 -3
  48. package/lib/utils/context.d.ts +6 -6
  49. package/lib/utils/file.d.ts +4 -9
  50. package/lib/utils/file.js +26 -49
  51. package/lib/utils/inquirer.js +2 -2
  52. package/lib/utils/preprocess.d.ts +6 -6
  53. package/lib/utils/prompt.d.ts +1 -2
  54. package/lib/utils/prompt.js +0 -14
  55. package/lib/utils/provider2agent.d.ts +2 -0
  56. package/lib/utils/provider2agent.js +20 -1
  57. package/lib/utils/system_prompt.d.ts +1 -0
  58. package/lib/utils/system_prompt.js +1 -0
  59. package/lib/utils/templates.d.ts +3 -0
  60. package/lib/utils/templates.js +46 -0
  61. package/package.json +2 -2
@@ -7,15 +7,6 @@ export const promptTemplates = [
7
7
  credit: "closing",
8
8
  version: "1.1",
9
9
  },
10
- audioParams: {
11
- audioVolume: 1,
12
- bgmVolume: 0.2,
13
- closingPadding: 0.8,
14
- introPadding: 1,
15
- outroPadding: 1,
16
- padding: 0.3,
17
- suppressSpeech: false,
18
- },
19
10
  canvasSize: {
20
11
  height: 1024,
21
12
  width: 1536,
@@ -30,27 +21,10 @@ export const promptTemplates = [
30
21
  type: "image",
31
22
  },
32
23
  },
33
- provider: "openai",
34
24
  style: "<style>AKIRA aesthetic.</style>",
35
25
  },
36
- movieParams: {
37
- provider: "replicate",
38
- },
39
- soundEffectParams: {
40
- provider: "replicate",
41
- },
42
- speechParams: {
43
- speakers: {
44
- Presenter: {
45
- displayName: {
46
- en: "Presenter",
47
- },
48
- voiceId: "shimmer",
49
- },
50
- },
51
- },
52
26
  },
53
- scriptName: "image_prompts_template.json",
27
+ scriptName: "image_prompts_template",
54
28
  systemPrompt: "Generate a script for a presentation of the given topic. Another AI will generate images for each beat based on the image prompt of that beat. Mention the reference in one of beats, if it exists. Use the JSON below as a template.",
55
29
  title: "Akira style",
56
30
  },
@@ -63,17 +37,10 @@ export const promptTemplates = [
63
37
  version: "1.1",
64
38
  },
65
39
  audioParams: {
66
- audioVolume: 1,
67
40
  bgm: {
68
41
  kind: "url",
69
42
  url: "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/bgms/morning001.mp3",
70
43
  },
71
- bgmVolume: 0.2,
72
- closingPadding: 0.8,
73
- introPadding: 1,
74
- outroPadding: 1,
75
- padding: 0.3,
76
- suppressSpeech: false,
77
44
  },
78
45
  canvasSize: {
79
46
  height: 1536,
@@ -89,17 +56,15 @@ export const promptTemplates = [
89
56
  type: "image",
90
57
  },
91
58
  },
92
- provider: "openai",
93
59
  style: "<style>A highly polished 2D digital illustration in anime and manga style, featuring clean linework, soft shading, vivid colors, and expressive facial detailing. The composition emphasizes clarity and visual impact with a minimalistic background and a strong character focus. The lighting is even and bright, giving the image a crisp and energetic feel, reminiscent of high-quality character art used in Japanese visual novels or mobile games.</style>",
94
60
  },
61
+ lang: "en",
95
62
  movieParams: {
96
63
  model: "bytedance/seedance-1-lite",
97
64
  provider: "replicate",
98
65
  },
99
- soundEffectParams: {
100
- provider: "replicate",
101
- },
102
66
  speechParams: {
67
+ provider: "openai",
103
68
  speakers: {
104
69
  Presenter: {
105
70
  speechOptions: {
@@ -110,7 +75,7 @@ export const promptTemplates = [
110
75
  },
111
76
  },
112
77
  },
113
- scriptName: "image_prompts_template.json",
78
+ scriptName: "image_prompts_template",
114
79
  systemPrompt: "Generate a script for a presentation of the given topic. 言葉づかいは少しツンデレにして。Another AI will generate comic for each beat based on the image prompt of that beat. You don't need to specify the style of the image, just describe the scene. Mention the reference in one of beats, if it exists. Use the JSON below as a template. Create appropriate amount of beats, and make sure the beats are coherent and flow well.",
115
80
  title: "Presentation with Ani",
116
81
  },
@@ -123,17 +88,10 @@ export const promptTemplates = [
123
88
  version: "1.1",
124
89
  },
125
90
  audioParams: {
126
- audioVolume: 1,
127
91
  bgm: {
128
92
  kind: "url",
129
93
  url: "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/bgms/morning001.mp3",
130
94
  },
131
- bgmVolume: 0.2,
132
- closingPadding: 0.8,
133
- introPadding: 1,
134
- outroPadding: 1,
135
- padding: 0.3,
136
- suppressSpeech: false,
137
95
  },
138
96
  canvasSize: {
139
97
  height: 1536,
@@ -149,16 +107,13 @@ export const promptTemplates = [
149
107
  type: "image",
150
108
  },
151
109
  },
152
- provider: "openai",
153
110
  style: "<style>A highly polished 2D digital illustration in anime and manga style, featuring clean linework, soft shading, vivid colors, and expressive facial detailing. The composition emphasizes clarity and visual impact with a minimalistic background and a strong character focus. The lighting is even and bright, giving the image a crisp and energetic feel, reminiscent of high-quality character art used in Japanese visual novels or mobile games.</style>",
154
111
  },
112
+ lang: "ja",
155
113
  movieParams: {
156
114
  model: "bytedance/seedance-1-lite",
157
115
  provider: "replicate",
158
116
  },
159
- soundEffectParams: {
160
- provider: "replicate",
161
- },
162
117
  speechParams: {
163
118
  speakers: {
164
119
  Presenter: {
@@ -168,14 +123,14 @@ export const promptTemplates = [
168
123
  },
169
124
  },
170
125
  },
171
- scriptName: "image_prompts_template.json",
126
+ scriptName: "image_prompts_template",
172
127
  systemPrompt: "Generate a Japanese script for a presentation of the given topic. 言葉づかいは少しツンデレにして。Another AI will generate comic for each beat based on the image prompt of that beat. You don't need to specify the style of the image, just describe the scene. Mention the reference in one of beats, if it exists. Use the JSON below as a template. Create appropriate amount of beats, and make sure the beats are coherent and flow well.",
173
128
  title: "Presentation with Ani in Japanese",
174
129
  },
175
130
  {
176
131
  description: "Template for business presentation.",
177
132
  filename: "business",
178
- scriptName: "business.json",
133
+ scriptName: "business",
179
134
  systemPrompt: "Generate a script for a business presentation of the given topic. Use textSlides, markdown, mermaid, or chart to show slides. Extract image links in the article (from <img> tag) to reuse them in the presentation. Mention the reference in one of beats, if it exists. Use the JSON below as a template. chartData is the data for Chart.js",
180
135
  title: "Business presentation",
181
136
  },
@@ -187,41 +142,12 @@ export const promptTemplates = [
187
142
  credit: "closing",
188
143
  version: "1.1",
189
144
  },
190
- audioParams: {
191
- audioVolume: 1,
192
- bgmVolume: 0.2,
193
- closingPadding: 0.8,
194
- introPadding: 1,
195
- outroPadding: 1,
196
- padding: 0.3,
197
- suppressSpeech: false,
198
- },
199
145
  canvasSize: {
200
146
  height: 1024,
201
147
  width: 1536,
202
148
  },
203
- imageParams: {
204
- images: {},
205
- provider: "openai",
206
- },
207
- movieParams: {
208
- provider: "replicate",
209
- },
210
- soundEffectParams: {
211
- provider: "replicate",
212
- },
213
- speechParams: {
214
- speakers: {
215
- Presenter: {
216
- displayName: {
217
- en: "Presenter",
218
- },
219
- voiceId: "shimmer",
220
- },
221
- },
222
- },
223
149
  },
224
- scriptName: "image_refs.json",
150
+ scriptName: "image_refs",
225
151
  systemPrompt: "Generate a script for a the given story with multiple characters. Generate image prompts for each character, and make references to them in the beats. Use the JSON below as a template.",
226
152
  title: "Story with multiple characters",
227
153
  },
@@ -233,48 +159,22 @@ export const promptTemplates = [
233
159
  credit: "closing",
234
160
  version: "1.1",
235
161
  },
236
- audioParams: {
237
- audioVolume: 1,
238
- bgmVolume: 0.2,
239
- closingPadding: 0.8,
240
- introPadding: 1,
241
- outroPadding: 1,
242
- padding: 0.3,
243
- suppressSpeech: false,
244
- },
245
162
  canvasSize: {
246
163
  height: 1024,
247
164
  width: 1536,
248
165
  },
249
166
  imageParams: {
250
- provider: "openai",
251
167
  style: "A hand-drawn style illustration with a warm, nostalgic atmosphere. The background is rich with natural scenery—lush forests, cloudy skies, and traditional Japanese architecture. Characters have expressive eyes, soft facial features, and are portrayed with gentle lighting and subtle shading. The color palette is muted yet vivid, using earthy tones and watercolor-like textures. The overall scene feels magical and peaceful, with a sense of quiet wonder and emotional depth, reminiscent of classic 1980s and 1990s Japanese animation.",
252
168
  },
253
- movieParams: {
254
- provider: "replicate",
255
- },
256
- soundEffectParams: {
257
- provider: "replicate",
258
- },
259
- speechParams: {
260
- speakers: {
261
- Presenter: {
262
- displayName: {
263
- en: "Presenter",
264
- },
265
- voiceId: "shimmer",
266
- },
267
- },
268
- },
269
169
  },
270
- scriptName: "children_book.json",
170
+ scriptName: "children_book",
271
171
  systemPrompt: "Please generate a script for a children book on the topic provided by the user. Each page (=beat) must haven an image prompt appropriate for the text.",
272
172
  title: "Children Book",
273
173
  },
274
174
  {
275
175
  description: "Template for software and coding presentation.",
276
176
  filename: "coding",
277
- scriptName: "coding.json",
177
+ scriptName: "coding",
278
178
  systemPrompt: "Generate a script for a technical presentation of the given topic. Use markdown with a code block to show some code on a slide. Avoid long coding examples, which may not fit in a single slide. Mention the reference in one of beats, if it exists. Use the JSON below as a template.",
279
179
  title: "Coding presentation",
280
180
  },
@@ -286,41 +186,15 @@ export const promptTemplates = [
286
186
  credit: "closing",
287
187
  version: "1.1",
288
188
  },
289
- audioParams: {
290
- audioVolume: 1,
291
- bgmVolume: 0.2,
292
- closingPadding: 0.8,
293
- introPadding: 1,
294
- outroPadding: 1,
295
- padding: 0.3,
296
- suppressSpeech: false,
297
- },
298
189
  canvasSize: {
299
190
  height: 1024,
300
191
  width: 1536,
301
192
  },
302
193
  imageParams: {
303
- provider: "openai",
304
194
  style: "<style>A multi panel comic strips. 1990s American workplace humor. Clean, minimalist line art with muted colors. One character is a nerdy office worker with glasses</style>",
305
195
  },
306
- movieParams: {
307
- provider: "replicate",
308
- },
309
- soundEffectParams: {
310
- provider: "replicate",
311
- },
312
- speechParams: {
313
- speakers: {
314
- Presenter: {
315
- displayName: {
316
- en: "Presenter",
317
- },
318
- voiceId: "shimmer",
319
- },
320
- },
321
- },
322
196
  },
323
- scriptName: "text_only_template.json",
197
+ scriptName: "text_only_template",
324
198
  systemPrompt: "Generate a script for a presentation of the given topic. Another AI will generate comic strips for each beat based on the text description of that beat. Mention the reference in one of beats, if it exists. Use the JSON below as a template.",
325
199
  title: "American Comic Strips",
326
200
  },
@@ -332,15 +206,6 @@ export const promptTemplates = [
332
206
  credit: "closing",
333
207
  version: "1.1",
334
208
  },
335
- audioParams: {
336
- audioVolume: 1,
337
- bgmVolume: 0.2,
338
- closingPadding: 0.8,
339
- introPadding: 1,
340
- outroPadding: 1,
341
- padding: 0.3,
342
- suppressSpeech: false,
343
- },
344
209
  canvasSize: {
345
210
  height: 1024,
346
211
  width: 1536,
@@ -355,27 +220,10 @@ export const promptTemplates = [
355
220
  type: "image",
356
221
  },
357
222
  },
358
- provider: "openai",
359
223
  style: "<style>Dragon Ball/Dr. Slump aesthetic.</style>",
360
224
  },
361
- movieParams: {
362
- provider: "replicate",
363
- },
364
- soundEffectParams: {
365
- provider: "replicate",
366
- },
367
- speechParams: {
368
- speakers: {
369
- Presenter: {
370
- displayName: {
371
- en: "Presenter",
372
- },
373
- voiceId: "shimmer",
374
- },
375
- },
376
- },
377
225
  },
378
- scriptName: "image_prompts_template.json",
226
+ scriptName: "image_prompts_template",
379
227
  systemPrompt: "Generate a script for a presentation of the given topic. Another AI will generate images for each beat based on the image prompt of that beat. Mention the reference in one of beats, if it exists. Use the JSON below as a template.",
380
228
  title: "Dr. Slump Style",
381
229
  },
@@ -387,15 +235,6 @@ export const promptTemplates = [
387
235
  credit: "closing",
388
236
  version: "1.1",
389
237
  },
390
- audioParams: {
391
- audioVolume: 1,
392
- bgmVolume: 0.2,
393
- closingPadding: 0.8,
394
- introPadding: 1,
395
- outroPadding: 1,
396
- padding: 0.3,
397
- suppressSpeech: false,
398
- },
399
238
  canvasSize: {
400
239
  height: 1024,
401
240
  width: 1536,
@@ -410,27 +249,10 @@ export const promptTemplates = [
410
249
  type: "image",
411
250
  },
412
251
  },
413
- provider: "openai",
414
252
  style: "<style>Ghibli style</style>",
415
253
  },
416
- movieParams: {
417
- provider: "replicate",
418
- },
419
- soundEffectParams: {
420
- provider: "replicate",
421
- },
422
- speechParams: {
423
- speakers: {
424
- Presenter: {
425
- displayName: {
426
- en: "Presenter",
427
- },
428
- voiceId: "shimmer",
429
- },
430
- },
431
- },
432
254
  },
433
- scriptName: "image_prompts_template.json",
255
+ scriptName: "image_prompts_template",
434
256
  systemPrompt: "Generate a script for a presentation of the given topic. Another AI will generate comic strips for each beat based on the text description of that beat. Mention the reference in one of beats, if it exists. Use the JSON below as a template.",
435
257
  title: "Ghibli comic style",
436
258
  },
@@ -442,15 +264,6 @@ export const promptTemplates = [
442
264
  credit: "closing",
443
265
  version: "1.1",
444
266
  },
445
- audioParams: {
446
- audioVolume: 1,
447
- bgmVolume: 0.2,
448
- closingPadding: 0.8,
449
- introPadding: 1,
450
- outroPadding: 1,
451
- padding: 0.3,
452
- suppressSpeech: false,
453
- },
454
267
  canvasSize: {
455
268
  height: 1024,
456
269
  width: 1536,
@@ -465,27 +278,10 @@ export const promptTemplates = [
465
278
  type: "image",
466
279
  },
467
280
  },
468
- provider: "openai",
469
281
  style: "<style>Ghibli style</style>",
470
282
  },
471
- movieParams: {
472
- provider: "replicate",
473
- },
474
- soundEffectParams: {
475
- provider: "replicate",
476
- },
477
- speechParams: {
478
- speakers: {
479
- Presenter: {
480
- displayName: {
481
- en: "Presenter",
482
- },
483
- voiceId: "shimmer",
484
- },
485
- },
486
- },
487
283
  },
488
- scriptName: "image_prompt_only_template.json",
284
+ scriptName: "image_prompt_only_template",
489
285
  systemPrompt: "Generate a script for a presentation of the given topic. Another AI will generate an image for each beat based on the text description of that beat. Use the JSON below as a template.",
490
286
  title: "Ghibli comic image-only",
491
287
  },
@@ -497,15 +293,6 @@ export const promptTemplates = [
497
293
  credit: "closing",
498
294
  version: "1.1",
499
295
  },
500
- audioParams: {
501
- audioVolume: 1,
502
- bgmVolume: 0.2,
503
- closingPadding: 0.8,
504
- introPadding: 1,
505
- outroPadding: 1,
506
- padding: 0.3,
507
- suppressSpeech: false,
508
- },
509
296
  canvasSize: {
510
297
  height: 1536,
511
298
  width: 1024,
@@ -520,15 +307,8 @@ export const promptTemplates = [
520
307
  type: "image",
521
308
  },
522
309
  },
523
- provider: "openai",
524
310
  style: "<style>Ghibli style</style>",
525
311
  },
526
- movieParams: {
527
- provider: "replicate",
528
- },
529
- soundEffectParams: {
530
- provider: "replicate",
531
- },
532
312
  speechParams: {
533
313
  speakers: {
534
314
  Presenter: {
@@ -541,7 +321,7 @@ export const promptTemplates = [
541
321
  },
542
322
  },
543
323
  },
544
- scriptName: "image_prompts_template.json",
324
+ scriptName: "image_prompts_template",
545
325
  systemPrompt: "Generate a Japanese script for a Youtube shorts of the given topic. Another AI will generate comic strips for each beat based on the text description of that beat. Mention the reference in one of beats, if it exists. Use the JSON below as a template.",
546
326
  title: "Ghibli style for YouTube Shorts",
547
327
  },
@@ -553,15 +333,6 @@ export const promptTemplates = [
553
333
  credit: "closing",
554
334
  version: "1.1",
555
335
  },
556
- audioParams: {
557
- audioVolume: 1,
558
- bgmVolume: 0.2,
559
- closingPadding: 0.8,
560
- introPadding: 1,
561
- outroPadding: 1,
562
- padding: 0.3,
563
- suppressSpeech: false,
564
- },
565
336
  canvasSize: {
566
337
  height: 1024,
567
338
  width: 1536,
@@ -583,34 +354,17 @@ export const promptTemplates = [
583
354
  type: "image",
584
355
  },
585
356
  },
586
- provider: "openai",
587
357
  style: "<style>Ghost in the shell aesthetic.</style>",
588
358
  },
589
- movieParams: {
590
- provider: "replicate",
591
- },
592
- soundEffectParams: {
593
- provider: "replicate",
594
- },
595
- speechParams: {
596
- speakers: {
597
- Presenter: {
598
- displayName: {
599
- en: "Presenter",
600
- },
601
- voiceId: "shimmer",
602
- },
603
- },
604
- },
605
359
  },
606
- scriptName: "image_prompts_template.json",
360
+ scriptName: "image_prompts_template",
607
361
  systemPrompt: "Generate a script for a presentation of the given topic. Another AI will generate images for each beat based on the image prompt of that beat. Mention the reference in one of beats, if it exists. Use the JSON below as a template.",
608
362
  title: "Ghost in the shell style",
609
363
  },
610
364
  {
611
365
  description: "Template for business presentation in HTML.",
612
366
  filename: "html",
613
- scriptName: "html.json",
367
+ scriptName: "html",
614
368
  systemPrompt: "Generate a script for a business presentation of the given topic. Another LLM will generate actual slides from the prompt and data for each beat. Adding optional data would help it to generate more compelling slide. Mention the reference in one of beats, if it exists. The valid type of reference is 'article', 'paper', 'image', 'video', 'audio'. Use the JSON below as a template.",
615
369
  title: "Business presentation in HTML",
616
370
  },
@@ -622,15 +376,6 @@ export const promptTemplates = [
622
376
  credit: "closing",
623
377
  version: "1.1",
624
378
  },
625
- audioParams: {
626
- audioVolume: 1,
627
- bgmVolume: 0.2,
628
- closingPadding: 0.8,
629
- introPadding: 1,
630
- outroPadding: 1,
631
- padding: 0.3,
632
- suppressSpeech: false,
633
- },
634
379
  canvasSize: {
635
380
  height: 1024,
636
381
  width: 1536,
@@ -645,27 +390,10 @@ export const promptTemplates = [
645
390
  type: "image",
646
391
  },
647
392
  },
648
- provider: "openai",
649
393
  style: "<style>One Piece aesthetic.</style>",
650
394
  },
651
- movieParams: {
652
- provider: "replicate",
653
- },
654
- soundEffectParams: {
655
- provider: "replicate",
656
- },
657
- speechParams: {
658
- speakers: {
659
- Presenter: {
660
- displayName: {
661
- en: "Presenter",
662
- },
663
- voiceId: "shimmer",
664
- },
665
- },
666
- },
667
395
  },
668
- scriptName: "image_prompts_template.json",
396
+ scriptName: "image_prompts_template",
669
397
  systemPrompt: "Generate a script for a presentation of the given topic. Another AI will generate images for each beat based on the image prompt of that beat. Mention the reference in one of beats, if it exists. Use the JSON below as a template.",
670
398
  title: "One Piece style",
671
399
  },
@@ -683,15 +411,6 @@ export const promptTemplates = [
683
411
  credit: "closing",
684
412
  version: "1.1",
685
413
  },
686
- audioParams: {
687
- audioVolume: 1,
688
- bgmVolume: 0.2,
689
- closingPadding: 0.8,
690
- introPadding: 1,
691
- outroPadding: 1,
692
- padding: 0.3,
693
- suppressSpeech: false,
694
- },
695
414
  canvasSize: {
696
415
  height: 1536,
697
416
  width: 1024,
@@ -706,27 +425,10 @@ export const promptTemplates = [
706
425
  type: "image",
707
426
  },
708
427
  },
709
- provider: "openai",
710
428
  style: "<style>Photo realistic, cinematic.</style>",
711
429
  },
712
- movieParams: {
713
- provider: "replicate",
714
- },
715
- soundEffectParams: {
716
- provider: "replicate",
717
- },
718
- speechParams: {
719
- speakers: {
720
- Presenter: {
721
- displayName: {
722
- en: "Presenter",
723
- },
724
- voiceId: "shimmer",
725
- },
726
- },
727
- },
728
430
  },
729
- scriptName: "movie_prompts_template.json",
431
+ scriptName: "movie_prompts_template",
730
432
  systemPrompt: "Generate a script for a presentation of the given topic. Another AI will generate images for each beat based on the image prompt of that beat. Movie prompts must be written in English. Mention the reference in one of beats, if it exists. Use the JSON below as a template.",
731
433
  title: "Photo realistic movie (portrait)",
732
434
  },
@@ -738,15 +440,6 @@ export const promptTemplates = [
738
440
  credit: "closing",
739
441
  version: "1.1",
740
442
  },
741
- audioParams: {
742
- audioVolume: 1,
743
- bgmVolume: 0.2,
744
- closingPadding: 0.8,
745
- introPadding: 1,
746
- outroPadding: 1,
747
- padding: 0.3,
748
- suppressSpeech: false,
749
- },
750
443
  canvasSize: {
751
444
  height: 1024,
752
445
  width: 1536,
@@ -761,27 +454,10 @@ export const promptTemplates = [
761
454
  type: "image",
762
455
  },
763
456
  },
764
- provider: "openai",
765
457
  style: "<style>Photo realistic, cinematic.</style>",
766
458
  },
767
- movieParams: {
768
- provider: "replicate",
769
- },
770
- soundEffectParams: {
771
- provider: "replicate",
772
- },
773
- speechParams: {
774
- speakers: {
775
- Presenter: {
776
- displayName: {
777
- en: "Presenter",
778
- },
779
- voiceId: "shimmer",
780
- },
781
- },
782
- },
783
459
  },
784
- scriptName: "movie_prompts_template.json",
460
+ scriptName: "movie_prompts_template",
785
461
  systemPrompt: "Generate a script for a presentation of the given topic. Another AI will generate images for each beat based on the image prompt of that beat. Movie prompts must be written in English. Mention the reference in one of beats, if it exists. Use the JSON below as a template.",
786
462
  title: "Photo realistic movie template",
787
463
  },
@@ -793,29 +469,13 @@ export const promptTemplates = [
793
469
  credit: "closing",
794
470
  version: "1.1",
795
471
  },
796
- audioParams: {
797
- audioVolume: 1,
798
- bgmVolume: 0.2,
799
- closingPadding: 0.8,
800
- introPadding: 1,
801
- outroPadding: 1,
802
- padding: 0.3,
803
- suppressSpeech: false,
804
- },
805
472
  canvasSize: {
806
473
  height: 1024,
807
474
  width: 1536,
808
475
  },
809
476
  imageParams: {
810
- provider: "openai",
811
477
  style: "<style>Ghibli style. Student (Taro) is a young teenager with a dark short hair with glasses. Teacher is a middle-aged man with grey hair and moustache.</style>",
812
478
  },
813
- movieParams: {
814
- provider: "replicate",
815
- },
816
- soundEffectParams: {
817
- provider: "replicate",
818
- },
819
479
  speechParams: {
820
480
  speakers: {
821
481
  Announcer: {
@@ -842,7 +502,7 @@ export const promptTemplates = [
842
502
  },
843
503
  },
844
504
  },
845
- scriptName: "sensei_and_taro.json",
505
+ scriptName: "sensei_and_taro",
846
506
  systemPrompt: "この件について、内容全てを高校生にも分かるように、太郎くん(Student)と先生(Teacher)の会話、という形の台本をArtifactとして作って。ただし要点はしっかりと押さえて。以下に別のトピックに関するサンプルを貼り付けます。このJSONフォーマットに従って。",
847
507
  title: "Student and Teacher",
848
508
  },
@@ -853,55 +513,29 @@ export const promptTemplates = [
853
513
  $mulmocast: {
854
514
  version: "1.1",
855
515
  },
856
- audioParams: {
857
- audioVolume: 1,
858
- bgmVolume: 0.2,
859
- closingPadding: 0.8,
860
- introPadding: 1,
861
- outroPadding: 1,
862
- padding: 0.3,
863
- suppressSpeech: false,
864
- },
865
516
  canvasSize: {
866
517
  height: 1280,
867
518
  width: 720,
868
519
  },
869
520
  imageParams: {
870
- provider: "openai",
871
521
  style: "<style>Photo realistic, cinematic.</style>",
872
522
  },
873
- movieParams: {
874
- provider: "replicate",
875
- },
876
- soundEffectParams: {
877
- provider: "replicate",
878
- },
879
- speechParams: {
880
- speakers: {
881
- Presenter: {
882
- displayName: {
883
- en: "Presenter",
884
- },
885
- voiceId: "shimmer",
886
- },
887
- },
888
- },
889
523
  },
890
- scriptName: "movie_prompts_template.json",
524
+ scriptName: "movie_prompts_template",
891
525
  systemPrompt: "Generate a script for a Youtube shorts of the given topic. The first beat should be a hook, which describes the topic. Another AI will generate images for each beat based on the image prompt of that beat. Movie prompts must be written in English.",
892
526
  title: "Short movie template",
893
527
  },
894
528
  {
895
529
  description: "Template for Text and Image Script.",
896
530
  filename: "text_and_image",
897
- scriptName: "image_prompts_template.json",
531
+ scriptName: "image_prompts_template",
898
532
  systemPrompt: "Generate a script for a presentation of the given topic. Another AI will generate comic strips for each beat based on the imagePrompt of that beat. Mention the reference in one of beats, if it exists. Use the JSON below as a template.",
899
533
  title: "Text and Image",
900
534
  },
901
535
  {
902
536
  description: "Template for Text Only Script.",
903
537
  filename: "text_only",
904
- scriptName: "text_only_template.json",
538
+ scriptName: "text_only_template",
905
539
  systemPrompt: "Generate a script for a presentation of the given topic. Another AI will generate comic strips for each beat based on the text description of that beat. Mention the reference in one of beats, if it exists. Use the JSON below as a template.",
906
540
  title: "Text Only",
907
541
  },
@@ -913,44 +547,24 @@ export const promptTemplates = [
913
547
  version: "1.1",
914
548
  },
915
549
  audioParams: {
916
- audioVolume: 1,
917
550
  bgm: {
918
551
  kind: "url",
919
552
  url: "https://raw.githubusercontent.com/receptron/mulmocast-media/refs/heads/main/bgms/trailer_dramatic.mp3",
920
553
  },
921
- bgmVolume: 0.2,
922
554
  closingPadding: 0,
923
555
  introPadding: 0,
924
556
  outroPadding: 2.5,
925
557
  padding: 0,
926
- suppressSpeech: false,
927
558
  },
928
559
  canvasSize: {
929
560
  height: 720,
930
561
  width: 1280,
931
562
  },
932
563
  imageParams: {
933
- provider: "openai",
934
564
  style: "<style>Photo realistic, cinematic.</style>",
935
565
  },
936
- movieParams: {
937
- provider: "replicate",
938
- },
939
- soundEffectParams: {
940
- provider: "replicate",
941
- },
942
- speechParams: {
943
- speakers: {
944
- Presenter: {
945
- displayName: {
946
- en: "Presenter",
947
- },
948
- voiceId: "shimmer",
949
- },
950
- },
951
- },
952
566
  },
953
- scriptName: "movie_prompts_no_text_template.json",
567
+ scriptName: "movie_prompts_no_text_template",
954
568
  systemPrompt: "Generate a script for a movie trailer of the given story. Another AI will generate images for each beat based on the image prompt of that beat. Movie prompts must be written in English.",
955
569
  title: "Movie Trailer template",
956
570
  },