mulmocast 1.2.2 → 1.2.4

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 (40) hide show
  1. package/assets/templates/ani.json +8 -3
  2. package/assets/templates/html.json +0 -1
  3. package/lib/actions/audio.js +1 -0
  4. package/lib/actions/captions.js +2 -2
  5. package/lib/actions/image_agents.js +3 -3
  6. package/lib/actions/images.js +5 -0
  7. package/lib/actions/translate.js +2 -2
  8. package/lib/agents/image_genai_agent.js +1 -1
  9. package/lib/agents/image_openai_agent.js +3 -0
  10. package/lib/agents/lipsync_replicate_agent.js +1 -1
  11. package/lib/agents/movie_genai_agent.js +1 -1
  12. package/lib/agents/movie_replicate_agent.js +1 -1
  13. package/lib/agents/sound_effect_replicate_agent.js +1 -1
  14. package/lib/agents/tts_elevenlabs_agent.js +1 -1
  15. package/lib/agents/tts_nijivoice_agent.js +10 -6
  16. package/lib/agents/tts_openai_agent.js +3 -0
  17. package/lib/data/bgmAssets.d.ts +18 -0
  18. package/lib/data/bgmAssets.js +101 -0
  19. package/lib/data/index.d.ts +1 -0
  20. package/lib/data/index.js +1 -0
  21. package/lib/data/promptTemplates.d.ts +13 -74
  22. package/lib/data/promptTemplates.js +7 -110
  23. package/lib/data/scriptTemplates.d.ts +1 -1
  24. package/lib/data/scriptTemplates.js +1 -0
  25. package/lib/data/templateDataSet.d.ts +0 -2
  26. package/lib/data/templateDataSet.js +1 -9
  27. package/lib/methods/mulmo_studio_context.d.ts +1 -1
  28. package/lib/methods/mulmo_studio_context.js +9 -8
  29. package/lib/types/schema.d.ts +45 -45
  30. package/lib/types/schema.js +9 -9
  31. package/lib/types/type.d.ts +1 -1
  32. package/lib/utils/filters.js +3 -3
  33. package/lib/utils/provider2agent.d.ts +7 -2
  34. package/lib/utils/provider2agent.js +21 -2
  35. package/package.json +11 -11
  36. package/scripts/templates/image_prompt_only_template.json +1 -0
  37. package/assets/templates/ghibli_image_only.json +0 -28
  38. package/assets/templates/ghibli_shorts.json +0 -33
  39. package/scripts/test/test_hello_caption.json~ +0 -21
  40. package/scripts/test/test_hello_image.json~ +0 -18
@@ -1,33 +0,0 @@
1
- {
2
- "title": "Ghibli style for YouTube Shorts",
3
- "description": "Template for Ghibli-style comic presentation.",
4
- "systemPrompt": "This script is for YouTube shorts. 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.",
5
- "presentationStyle": {
6
- "$mulmocast": {
7
- "version": "1.1",
8
- "credit": "closing"
9
- },
10
- "canvasSize": {
11
- "width": 1024,
12
- "height": 1536
13
- },
14
- "speechParams": {
15
- "speakers": {
16
- "Presenter": { "provider": "nijivoice", "voiceId": "3708ad43-cace-486c-a4ca-8fe41186e20c", "speechOptions": { "speed": 1.5 } }
17
- }
18
- },
19
- "imageParams": {
20
- "style": "<style>Ghibli style</style>",
21
- "images": {
22
- "presenter": {
23
- "type": "image",
24
- "source": {
25
- "kind": "url",
26
- "url": "https://raw.githubusercontent.com/receptron/mulmocast-media/refs/heads/main/characters/ghibli_presenter.jpg"
27
- }
28
- }
29
- }
30
- }
31
- },
32
- "scriptName": "image_prompts_template.json"
33
- }
@@ -1,21 +0,0 @@
1
- {
2
- "$mulmocast": {
3
- "version": "1.1"
4
- },
5
- "lang": "en",
6
- "captionParams": {
7
- "lang": "en"
8
- },
9
- "beats": [
10
- {
11
- "text": "Hello World",
12
- "image": {
13
- "type": "textSlide",
14
- "slide": {
15
- "title": "Hello World",
16
- "bullets": ["Hello", "World"]
17
- }
18
- }
19
- }
20
- ]
21
- }
@@ -1,18 +0,0 @@
1
- {
2
- "$mulmocast": {
3
- "version": "1.1"
4
- },
5
- "lang": "en",
6
- "beats": [
7
- {
8
- "text": "Hello World",
9
- "image": {
10
- "type": "textSlide",
11
- "slide": {
12
- "title": "Hello World",
13
- "bullets": ["Hello", "World"]
14
- }
15
- }
16
- }
17
- ]
18
- }