mulmocast 2.6.5 → 2.6.7
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/audio.js +7 -35
- package/lib/actions/graph_option.d.ts +4 -0
- package/lib/actions/graph_option.js +19 -0
- package/lib/actions/image_references.js +3 -3
- package/lib/actions/images.d.ts +2 -3
- package/lib/actions/images.js +5 -19
- package/lib/actions/movie.d.ts +3 -0
- package/lib/actions/movie.js +38 -5
- package/lib/agents/add_bgm_agent.d.ts +10 -0
- package/lib/agents/add_bgm_agent.js +26 -4
- package/lib/agents/movie_genai_agent.js +1 -1
- package/lib/agents/movie_replicate_agent.js +29 -5
- package/lib/methods/mulmo_presentation_style.d.ts +5 -1
- package/lib/methods/mulmo_presentation_style.js +27 -3
- package/lib/types/provider2agent.d.ts +2 -0
- package/lib/types/provider2agent.js +78 -5
- package/lib/types/schema.d.ts +55 -4
- package/lib/types/schema.js +12 -1
- package/lib/utils/context.d.ts +28 -2
- package/lib/utils/image_plugins/html_tailwind.d.ts +5 -0
- package/lib/utils/image_plugins/html_tailwind.js +56 -5
- package/package.json +18 -16
- package/scripts/test/fixtures/movie_tone_high.mov +0 -0
- package/scripts/test/fixtures/movie_tone_low.mov +0 -0
- package/scripts/test/fixtures/movie_tone_mid.mov +0 -0
- package/scripts/test/glb/sample_2026-03-15T172907.296_compat.glb +0 -0
- package/scripts/test/test_audio_mix.json +91 -0
- package/scripts/test/test_audio_mix_beat_vol.json +100 -0
- package/scripts/test/test_audio_mix_ducking.json +91 -0
- package/scripts/test/test_audio_mix_legacy.json +90 -0
- package/scripts/test/test_grok.json +57 -0
- package/scripts/test/test_image_references.json +74 -0
- package/scripts/test/test_kling_v3.json +54 -0
- package/scripts/test/test_kling_v3_omni.json +54 -0
- package/scripts/test/test_lipsync2.json +48 -52
- package/scripts/test/test_lipsync5.json +66 -0
- package/scripts/test/test_runway.json +54 -0
- package/scripts/test/test_threejs.json +241 -0
- package/scripts/test/test_threejs_glb.json +154 -0
- package/scripts/test/test_veo31_lite.json +39 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mulmocast",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.7",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.node.js",
|
|
@@ -24,8 +24,9 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"resolutions": {
|
|
27
|
-
"minimatch": "^10.2.
|
|
28
|
-
"
|
|
27
|
+
"minimatch": "^10.2.5",
|
|
28
|
+
"tar": "7.5.13",
|
|
29
|
+
"yauzl": "^3.3.0"
|
|
29
30
|
},
|
|
30
31
|
"bin": {
|
|
31
32
|
"mulmo": "lib/cli/bin.js",
|
|
@@ -88,7 +89,7 @@
|
|
|
88
89
|
"homepage": "https://github.com/receptron/mulmocast-cli#readme",
|
|
89
90
|
"dependencies": {
|
|
90
91
|
"@google-cloud/text-to-speech": "^6.4.0",
|
|
91
|
-
"@google/genai": "^1.
|
|
92
|
+
"@google/genai": "^1.49.0",
|
|
92
93
|
"@graphai/anthropic_agent": "^2.0.12",
|
|
93
94
|
"@graphai/browserless_agent": "^2.0.2",
|
|
94
95
|
"@graphai/gemini_agent": "^2.0.5",
|
|
@@ -98,23 +99,23 @@
|
|
|
98
99
|
"@graphai/stream_agent_filter": "^2.0.3",
|
|
99
100
|
"@graphai/vanilla": "^2.0.12",
|
|
100
101
|
"@graphai/vanilla_node_agents": "^2.0.4",
|
|
101
|
-
"@inquirer/input": "^5.0.
|
|
102
|
-
"@inquirer/select": "^5.1.
|
|
103
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
102
|
+
"@inquirer/input": "^5.0.11",
|
|
103
|
+
"@inquirer/select": "^5.1.3",
|
|
104
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
104
105
|
"@mozilla/readability": "^0.6.0",
|
|
105
106
|
"@tavily/core": "^0.5.11",
|
|
106
107
|
"archiver": "^7.0.1",
|
|
107
108
|
"clipboardy": "^5.3.1",
|
|
108
|
-
"dotenv": "^17.
|
|
109
|
+
"dotenv": "^17.4.2",
|
|
109
110
|
"fluent-ffmpeg": "^2.1.3",
|
|
110
111
|
"graphai": "^2.0.16",
|
|
111
|
-
"jsdom": "^29.0.
|
|
112
|
-
"marked": "^
|
|
112
|
+
"jsdom": "^29.0.2",
|
|
113
|
+
"marked": "^18.0.0",
|
|
113
114
|
"mulmocast-vision": "^1.0.9",
|
|
114
115
|
"ora": "^9.3.0",
|
|
115
116
|
"puppeteer": "^24.40.0",
|
|
116
117
|
"replicate": "^1.4.0",
|
|
117
|
-
"yaml": "^2.8.
|
|
118
|
+
"yaml": "^2.8.3",
|
|
118
119
|
"yargs": "^18.0.0",
|
|
119
120
|
"zod": "^4.3.6"
|
|
120
121
|
},
|
|
@@ -126,15 +127,16 @@
|
|
|
126
127
|
"@types/jsdom": "^28.0.1",
|
|
127
128
|
"@types/yargs": "^17.0.35",
|
|
128
129
|
"cross-env": "^10.1.0",
|
|
129
|
-
"eslint": "^10.
|
|
130
|
+
"eslint": "^10.2.0",
|
|
130
131
|
"eslint-config-prettier": "^10.1.8",
|
|
132
|
+
"eslint-plugin-import": "^2.32.0",
|
|
131
133
|
"eslint-plugin-prettier": "^5.5.5",
|
|
132
134
|
"eslint-plugin-sonarjs": "^4.0.2",
|
|
133
|
-
"globals": "^17.
|
|
134
|
-
"prettier": "^3.8.
|
|
135
|
+
"globals": "^17.5.0",
|
|
136
|
+
"prettier": "^3.8.2",
|
|
135
137
|
"tsx": "^4.21.0",
|
|
136
|
-
"typescript": "6.0.
|
|
137
|
-
"typescript-eslint": "^8.
|
|
138
|
+
"typescript": "6.0.2",
|
|
139
|
+
"typescript-eslint": "^8.58.1"
|
|
138
140
|
},
|
|
139
141
|
"engines": {
|
|
140
142
|
"node": ">=22.0.0"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"title": "Audio Mix Manual Test (fixtures)",
|
|
6
|
+
"lang": "en",
|
|
7
|
+
"canvasSize": {
|
|
8
|
+
"width": 320,
|
|
9
|
+
"height": 180
|
|
10
|
+
},
|
|
11
|
+
"speechParams": {
|
|
12
|
+
"speakers": {
|
|
13
|
+
"Presenter": {
|
|
14
|
+
"provider": "openai",
|
|
15
|
+
"voiceId": "shimmer"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"audioParams": {
|
|
20
|
+
"bgmVolume": 0,
|
|
21
|
+
"movieVolume": 0.3
|
|
22
|
+
},
|
|
23
|
+
"beats": [
|
|
24
|
+
{
|
|
25
|
+
"speaker": "Presenter",
|
|
26
|
+
"text": "Low tone with narration.",
|
|
27
|
+
"image": {
|
|
28
|
+
"type": "movie",
|
|
29
|
+
"source": {
|
|
30
|
+
"kind": "path",
|
|
31
|
+
"path": "fixtures/movie_tone_low.mov"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"speaker": "Presenter",
|
|
37
|
+
"duration": 3.0,
|
|
38
|
+
"image": {
|
|
39
|
+
"type": "movie",
|
|
40
|
+
"source": {
|
|
41
|
+
"kind": "path",
|
|
42
|
+
"path": "fixtures/movie_tone_low.mov"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"speaker": "Presenter",
|
|
48
|
+
"text": "Mid tone with narration.",
|
|
49
|
+
"image": {
|
|
50
|
+
"type": "movie",
|
|
51
|
+
"source": {
|
|
52
|
+
"kind": "path",
|
|
53
|
+
"path": "fixtures/movie_tone_mid.mov"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"speaker": "Presenter",
|
|
59
|
+
"duration": 3.0,
|
|
60
|
+
"image": {
|
|
61
|
+
"type": "movie",
|
|
62
|
+
"source": {
|
|
63
|
+
"kind": "path",
|
|
64
|
+
"path": "fixtures/movie_tone_mid.mov"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"speaker": "Presenter",
|
|
70
|
+
"text": "High tone with narration.",
|
|
71
|
+
"image": {
|
|
72
|
+
"type": "movie",
|
|
73
|
+
"source": {
|
|
74
|
+
"kind": "path",
|
|
75
|
+
"path": "fixtures/movie_tone_high.mov"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"speaker": "Presenter",
|
|
81
|
+
"duration": 3.0,
|
|
82
|
+
"image": {
|
|
83
|
+
"type": "movie",
|
|
84
|
+
"source": {
|
|
85
|
+
"kind": "path",
|
|
86
|
+
"path": "fixtures/movie_tone_high.mov"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"title": "Audio Mix Beat Volume Test (fixtures)",
|
|
6
|
+
"lang": "en",
|
|
7
|
+
"canvasSize": {
|
|
8
|
+
"width": 320,
|
|
9
|
+
"height": 180
|
|
10
|
+
},
|
|
11
|
+
"speechParams": {
|
|
12
|
+
"speakers": {
|
|
13
|
+
"Presenter": {
|
|
14
|
+
"provider": "openai",
|
|
15
|
+
"voiceId": "shimmer"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"audioParams": {
|
|
20
|
+
"bgmVolume": 0,
|
|
21
|
+
"movieVolume": 0.5
|
|
22
|
+
},
|
|
23
|
+
"beats": [
|
|
24
|
+
{
|
|
25
|
+
"speaker": "Presenter",
|
|
26
|
+
"text": "Low tone, beat movieVolume 0.1.",
|
|
27
|
+
"audioParams": {
|
|
28
|
+
"movieVolume": 0.1
|
|
29
|
+
},
|
|
30
|
+
"image": {
|
|
31
|
+
"type": "movie",
|
|
32
|
+
"source": {
|
|
33
|
+
"kind": "path",
|
|
34
|
+
"path": "fixtures/movie_tone_low.mov"
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"speaker": "Presenter",
|
|
40
|
+
"text": "Low tone, script default 0.5.",
|
|
41
|
+
"image": {
|
|
42
|
+
"type": "movie",
|
|
43
|
+
"source": {
|
|
44
|
+
"kind": "path",
|
|
45
|
+
"path": "fixtures/movie_tone_low.mov"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"speaker": "Presenter",
|
|
51
|
+
"text": "Mid tone, beat movieVolume 1.0.",
|
|
52
|
+
"audioParams": {
|
|
53
|
+
"movieVolume": 1.0
|
|
54
|
+
},
|
|
55
|
+
"image": {
|
|
56
|
+
"type": "movie",
|
|
57
|
+
"source": {
|
|
58
|
+
"kind": "path",
|
|
59
|
+
"path": "fixtures/movie_tone_mid.mov"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"speaker": "Presenter",
|
|
65
|
+
"text": "Mid tone, script default 0.5.",
|
|
66
|
+
"image": {
|
|
67
|
+
"type": "movie",
|
|
68
|
+
"source": {
|
|
69
|
+
"kind": "path",
|
|
70
|
+
"path": "fixtures/movie_tone_mid.mov"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"speaker": "Presenter",
|
|
76
|
+
"text": "High tone, beat movieVolume 0.0, should be silent.",
|
|
77
|
+
"audioParams": {
|
|
78
|
+
"movieVolume": 0.0
|
|
79
|
+
},
|
|
80
|
+
"image": {
|
|
81
|
+
"type": "movie",
|
|
82
|
+
"source": {
|
|
83
|
+
"kind": "path",
|
|
84
|
+
"path": "fixtures/movie_tone_high.mov"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"speaker": "Presenter",
|
|
90
|
+
"text": "High tone, script default 0.5.",
|
|
91
|
+
"image": {
|
|
92
|
+
"type": "movie",
|
|
93
|
+
"source": {
|
|
94
|
+
"kind": "path",
|
|
95
|
+
"path": "fixtures/movie_tone_high.mov"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
]
|
|
100
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"title": "Audio Mix Ducking Test (fixtures)",
|
|
6
|
+
"lang": "en",
|
|
7
|
+
"canvasSize": {
|
|
8
|
+
"width": 320,
|
|
9
|
+
"height": 180
|
|
10
|
+
},
|
|
11
|
+
"speechParams": {
|
|
12
|
+
"speakers": {
|
|
13
|
+
"Presenter": {
|
|
14
|
+
"provider": "openai",
|
|
15
|
+
"voiceId": "shimmer"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"audioParams": {
|
|
20
|
+
"bgmVolume": 0,
|
|
21
|
+
"ducking": { "ratio": 0.3 }
|
|
22
|
+
},
|
|
23
|
+
"beats": [
|
|
24
|
+
{
|
|
25
|
+
"speaker": "Presenter",
|
|
26
|
+
"text": "Low tone with narration.",
|
|
27
|
+
"image": {
|
|
28
|
+
"type": "movie",
|
|
29
|
+
"source": {
|
|
30
|
+
"kind": "path",
|
|
31
|
+
"path": "fixtures/movie_tone_low.mov"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"speaker": "Presenter",
|
|
37
|
+
"duration": 3.0,
|
|
38
|
+
"image": {
|
|
39
|
+
"type": "movie",
|
|
40
|
+
"source": {
|
|
41
|
+
"kind": "path",
|
|
42
|
+
"path": "fixtures/movie_tone_low.mov"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"speaker": "Presenter",
|
|
48
|
+
"text": "Mid tone with narration.",
|
|
49
|
+
"image": {
|
|
50
|
+
"type": "movie",
|
|
51
|
+
"source": {
|
|
52
|
+
"kind": "path",
|
|
53
|
+
"path": "fixtures/movie_tone_mid.mov"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"speaker": "Presenter",
|
|
59
|
+
"duration": 3.0,
|
|
60
|
+
"image": {
|
|
61
|
+
"type": "movie",
|
|
62
|
+
"source": {
|
|
63
|
+
"kind": "path",
|
|
64
|
+
"path": "fixtures/movie_tone_mid.mov"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"speaker": "Presenter",
|
|
70
|
+
"text": "High tone with narration.",
|
|
71
|
+
"image": {
|
|
72
|
+
"type": "movie",
|
|
73
|
+
"source": {
|
|
74
|
+
"kind": "path",
|
|
75
|
+
"path": "fixtures/movie_tone_high.mov"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"speaker": "Presenter",
|
|
81
|
+
"duration": 3.0,
|
|
82
|
+
"image": {
|
|
83
|
+
"type": "movie",
|
|
84
|
+
"source": {
|
|
85
|
+
"kind": "path",
|
|
86
|
+
"path": "fixtures/movie_tone_high.mov"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"title": "Audio Mix Legacy Test (fixtures)",
|
|
6
|
+
"lang": "en",
|
|
7
|
+
"canvasSize": {
|
|
8
|
+
"width": 320,
|
|
9
|
+
"height": 180
|
|
10
|
+
},
|
|
11
|
+
"speechParams": {
|
|
12
|
+
"speakers": {
|
|
13
|
+
"Presenter": {
|
|
14
|
+
"provider": "openai",
|
|
15
|
+
"voiceId": "shimmer"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"audioParams": {
|
|
20
|
+
"bgmVolume": 0
|
|
21
|
+
},
|
|
22
|
+
"beats": [
|
|
23
|
+
{
|
|
24
|
+
"speaker": "Presenter",
|
|
25
|
+
"text": "Low tone with narration.",
|
|
26
|
+
"image": {
|
|
27
|
+
"type": "movie",
|
|
28
|
+
"source": {
|
|
29
|
+
"kind": "path",
|
|
30
|
+
"path": "fixtures/movie_tone_low.mov"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"speaker": "Presenter",
|
|
36
|
+
"duration": 3.0,
|
|
37
|
+
"image": {
|
|
38
|
+
"type": "movie",
|
|
39
|
+
"source": {
|
|
40
|
+
"kind": "path",
|
|
41
|
+
"path": "fixtures/movie_tone_low.mov"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"speaker": "Presenter",
|
|
47
|
+
"text": "Mid tone with narration.",
|
|
48
|
+
"image": {
|
|
49
|
+
"type": "movie",
|
|
50
|
+
"source": {
|
|
51
|
+
"kind": "path",
|
|
52
|
+
"path": "fixtures/movie_tone_mid.mov"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"speaker": "Presenter",
|
|
58
|
+
"duration": 3.0,
|
|
59
|
+
"image": {
|
|
60
|
+
"type": "movie",
|
|
61
|
+
"source": {
|
|
62
|
+
"kind": "path",
|
|
63
|
+
"path": "fixtures/movie_tone_mid.mov"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"speaker": "Presenter",
|
|
69
|
+
"text": "High tone with narration.",
|
|
70
|
+
"image": {
|
|
71
|
+
"type": "movie",
|
|
72
|
+
"source": {
|
|
73
|
+
"kind": "path",
|
|
74
|
+
"path": "fixtures/movie_tone_high.mov"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"speaker": "Presenter",
|
|
80
|
+
"duration": 3.0,
|
|
81
|
+
"image": {
|
|
82
|
+
"type": "movie",
|
|
83
|
+
"source": {
|
|
84
|
+
"kind": "path",
|
|
85
|
+
"path": "fixtures/movie_tone_high.mov"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": { "version": "1.1" },
|
|
3
|
+
"movieParams": {
|
|
4
|
+
"provider": "replicate",
|
|
5
|
+
"model": "xai/grok-imagine-video"
|
|
6
|
+
},
|
|
7
|
+
"audioParams": {
|
|
8
|
+
"bgmVolume": 0
|
|
9
|
+
},
|
|
10
|
+
"captionParams": {
|
|
11
|
+
"lang": "en"
|
|
12
|
+
},
|
|
13
|
+
"lang": "en",
|
|
14
|
+
"beats": [
|
|
15
|
+
{
|
|
16
|
+
"text": "Testing xai/grok-imagine-video — text-to-video, image-to-video, and duration varieties.",
|
|
17
|
+
"image": {
|
|
18
|
+
"type": "textSlide",
|
|
19
|
+
"slide": {
|
|
20
|
+
"title": "xai/grok-imagine-video test"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": "grok-t2v-5s",
|
|
26
|
+
"text": "Text-to-video, 5 seconds: a red fox trots through a snowy forest at dawn, pawprints left behind",
|
|
27
|
+
"duration": 5,
|
|
28
|
+
"moviePrompt": "a red fox trots through a snowy forest at dawn, pawprints left behind, soft golden light filtering through pine trees"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "grok-t2v-8s",
|
|
32
|
+
"text": "Text-to-video, 8 seconds: timelapse of storm clouds forming over a mountain range",
|
|
33
|
+
"duration": 8,
|
|
34
|
+
"moviePrompt": "timelapse of dark storm clouds rolling in over a rugged mountain range, lightning flashes in the distance, dramatic cinematic lighting"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"id": "grok-t2v-10s",
|
|
38
|
+
"text": "Text-to-video, 10 seconds: bustling Tokyo crossing at night",
|
|
39
|
+
"duration": 10,
|
|
40
|
+
"moviePrompt": "aerial dolly shot over Shibuya crossing at night, neon lights reflecting on wet pavement, crowds of people crossing in all directions"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"id": "grok-i2v-5s",
|
|
44
|
+
"text": "Image-to-video, 5 seconds: ocean waves animated from a still image",
|
|
45
|
+
"duration": 5,
|
|
46
|
+
"imagePrompt": "a calm tropical beach at sunset, crystal-clear turquoise water, golden sand, photorealistic",
|
|
47
|
+
"moviePrompt": "gentle waves lapping the shore, palm trees swaying softly in the breeze, camera slowly pushing forward"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"id": "grok-i2v-8s",
|
|
51
|
+
"text": "Image-to-video, 8 seconds: city skyline coming to life",
|
|
52
|
+
"duration": 8,
|
|
53
|
+
"imagePrompt": "futuristic city skyline at dusk, glass skyscrapers with glowing windows, photorealistic",
|
|
54
|
+
"moviePrompt": "lights in the skyscraper windows flicker on one by one as night falls, slow upward pan along the tallest tower"
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": { "version": "1.1" },
|
|
3
|
+
"imageParams": {
|
|
4
|
+
"provider": "google",
|
|
5
|
+
"images": {
|
|
6
|
+
"character": {
|
|
7
|
+
"type": "imagePrompt",
|
|
8
|
+
"prompt": "a young woman with short black hair wearing a red leather jacket and dark sunglasses, standing on a neon-lit Tokyo street at night, photo realistic"
|
|
9
|
+
},
|
|
10
|
+
"black_cat": {
|
|
11
|
+
"type": "imagePrompt",
|
|
12
|
+
"prompt": "small black cat"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"movieParams": {
|
|
17
|
+
"provider": "google",
|
|
18
|
+
"model": "veo-3.1-generate-preview"
|
|
19
|
+
},
|
|
20
|
+
"lang": "en",
|
|
21
|
+
"beats": [
|
|
22
|
+
{
|
|
23
|
+
"id": "veo31_asset_and_style",
|
|
24
|
+
"text": "veo-3.1 with both ASSET and STYLE reference images",
|
|
25
|
+
"moviePrompt": "the woman runs through narrow alleyways, neon signs blurring in the rain",
|
|
26
|
+
"movieParams": {
|
|
27
|
+
"model": "veo-3.1-generate-preview",
|
|
28
|
+
"referenceImages": [
|
|
29
|
+
{ "imageName": "character", "referenceType": "ASSET" },
|
|
30
|
+
{ "imageName": "black_cat", "referenceType": "ASSET" }
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"id": "veo31_replicate_asset_reference",
|
|
36
|
+
"text": "google/veo-3.1 (replicate) with reference images",
|
|
37
|
+
"moviePrompt": "the woman walks through a crowded neon-lit Tokyo street at night, rain falling gently around her",
|
|
38
|
+
"movieParams": {
|
|
39
|
+
"provider": "replicate",
|
|
40
|
+
"model": "google/veo-3.1",
|
|
41
|
+
"referenceImages": [
|
|
42
|
+
{ "imageName": "character", "referenceType": "ASSET" },
|
|
43
|
+
{ "imageName": "black_cat", "referenceType": "ASSET" }
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "kling_v3_omni_asset_reference",
|
|
49
|
+
"text": "kling-v3-omni-video with character ASSET reference image",
|
|
50
|
+
"moviePrompt": "the woman walks through a crowded neon-lit Tokyo street at night, rain falling gently around her",
|
|
51
|
+
"movieParams": {
|
|
52
|
+
"provider": "replicate",
|
|
53
|
+
"model": "kwaivgi/kling-v3-omni-video",
|
|
54
|
+
"referenceImages": [
|
|
55
|
+
{ "imageName": "character", "referenceType": "ASSET" },
|
|
56
|
+
{ "imageName": "black_cat", "referenceType": "ASSET" }
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "grok_r2v_reference",
|
|
62
|
+
"text": "xai/grok-imagine-r2v with character and cat reference images",
|
|
63
|
+
"moviePrompt": "the woman walks through a crowded neon-lit Tokyo street at night, rain falling gently around her, the black cat weaving between her feet",
|
|
64
|
+
"movieParams": {
|
|
65
|
+
"provider": "replicate",
|
|
66
|
+
"model": "xai/grok-imagine-r2v",
|
|
67
|
+
"referenceImages": [
|
|
68
|
+
{ "imageName": "character", "referenceType": "ASSET" },
|
|
69
|
+
{ "imageName": "black_cat", "referenceType": "ASSET" }
|
|
70
|
+
]
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": { "version": "1.1" },
|
|
3
|
+
"movieParams": {
|
|
4
|
+
"provider": "replicate",
|
|
5
|
+
"model": "kwaivgi/kling-v3-video"
|
|
6
|
+
},
|
|
7
|
+
"imageParams": {
|
|
8
|
+
"provider": "google"
|
|
9
|
+
},
|
|
10
|
+
"audioParams": {
|
|
11
|
+
"bgmVolume": 0
|
|
12
|
+
},
|
|
13
|
+
"captionParams": {
|
|
14
|
+
"lang": "en"
|
|
15
|
+
},
|
|
16
|
+
"lang": "en",
|
|
17
|
+
"beats": [
|
|
18
|
+
{
|
|
19
|
+
"text": "Testing kwaivgi/kling-v3-video — text-to-video and image-to-video varieties.",
|
|
20
|
+
"image": {
|
|
21
|
+
"type": "textSlide",
|
|
22
|
+
"slide": {
|
|
23
|
+
"title": "kwaivgi/kling-v3-video test"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "kling-v3-t2v-5s",
|
|
29
|
+
"text": "Text-to-video, 5 seconds: a red fox trots through a snowy forest at dawn, pawprints left behind",
|
|
30
|
+
"duration": 5,
|
|
31
|
+
"moviePrompt": "a red fox trots through a snowy forest at dawn, pawprints left behind, soft golden light filtering through pine trees"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"id": "kling-v3-t2v-10s",
|
|
35
|
+
"text": "Text-to-video, 10 seconds: bustling Tokyo crossing at night",
|
|
36
|
+
"duration": 10,
|
|
37
|
+
"moviePrompt": "aerial dolly shot over Shibuya crossing at night, neon lights reflecting on wet pavement, crowds of people crossing in all directions"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"id": "kling-v3-i2v-5s",
|
|
41
|
+
"text": "Image-to-video, 5 seconds: ocean waves animated from a still image",
|
|
42
|
+
"duration": 5,
|
|
43
|
+
"imagePrompt": "a calm tropical beach at sunset, crystal-clear turquoise water, golden sand, photorealistic",
|
|
44
|
+
"moviePrompt": "gentle waves lapping the shore, palm trees swaying softly in the breeze, camera slowly pushing forward"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"id": "kling-v3-i2v-10s",
|
|
48
|
+
"text": "Image-to-video, 10 seconds: city skyline coming to life",
|
|
49
|
+
"duration": 10,
|
|
50
|
+
"imagePrompt": "futuristic city skyline at dusk, glass skyscrapers with glowing windows, photorealistic",
|
|
51
|
+
"moviePrompt": "lights in the skyscraper windows flicker on one by one as night falls, slow upward pan along the tallest tower"
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
}
|