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.
- package/assets/templates/ani.json +8 -3
- package/assets/templates/html.json +0 -1
- package/lib/actions/audio.js +1 -0
- package/lib/actions/captions.js +2 -2
- package/lib/actions/image_agents.js +3 -3
- package/lib/actions/images.js +5 -0
- package/lib/actions/translate.js +2 -2
- package/lib/agents/image_genai_agent.js +1 -1
- package/lib/agents/image_openai_agent.js +3 -0
- package/lib/agents/lipsync_replicate_agent.js +1 -1
- package/lib/agents/movie_genai_agent.js +1 -1
- package/lib/agents/movie_replicate_agent.js +1 -1
- package/lib/agents/sound_effect_replicate_agent.js +1 -1
- package/lib/agents/tts_elevenlabs_agent.js +1 -1
- package/lib/agents/tts_nijivoice_agent.js +10 -6
- package/lib/agents/tts_openai_agent.js +3 -0
- package/lib/data/bgmAssets.d.ts +18 -0
- package/lib/data/bgmAssets.js +101 -0
- package/lib/data/index.d.ts +1 -0
- package/lib/data/index.js +1 -0
- package/lib/data/promptTemplates.d.ts +13 -74
- package/lib/data/promptTemplates.js +7 -110
- package/lib/data/scriptTemplates.d.ts +1 -1
- package/lib/data/scriptTemplates.js +1 -0
- package/lib/data/templateDataSet.d.ts +0 -2
- package/lib/data/templateDataSet.js +1 -9
- package/lib/methods/mulmo_studio_context.d.ts +1 -1
- package/lib/methods/mulmo_studio_context.js +9 -8
- package/lib/types/schema.d.ts +45 -45
- package/lib/types/schema.js +9 -9
- package/lib/types/type.d.ts +1 -1
- package/lib/utils/filters.js +3 -3
- package/lib/utils/provider2agent.d.ts +7 -2
- package/lib/utils/provider2agent.js +21 -2
- package/package.json +11 -11
- package/scripts/templates/image_prompt_only_template.json +1 -0
- package/assets/templates/ghibli_image_only.json +0 -28
- package/assets/templates/ghibli_shorts.json +0 -33
- package/scripts/test/test_hello_caption.json~ +0 -21
- 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
|
-
}
|