mulmocast 2.0.8 → 2.1.0
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/movie.d.ts +29 -2
- package/lib/actions/movie.js +243 -91
- package/lib/methods/mulmo_presentation_style.d.ts +4 -3
- package/lib/methods/mulmo_presentation_style.js +7 -1
- package/lib/types/schema.d.ts +202 -31
- package/lib/types/schema.js +27 -13
- package/lib/types/schema_video_filter.d.ts +423 -0
- package/lib/types/schema_video_filter.js +253 -0
- package/lib/types/type.d.ts +2 -1
- package/lib/utils/context.d.ts +11 -3
- package/lib/utils/ffmpeg_utils.js +2 -2
- package/lib/utils/provider2agent.d.ts +4 -0
- package/lib/utils/provider2agent.js +5 -0
- package/lib/utils/utils.js +24 -55
- package/lib/utils/video_filter.d.ts +7 -0
- package/lib/utils/video_filter.js +149 -0
- package/package.json +7 -7
- package/scripts/test/README.md +48 -48
- package/scripts/test/test_transition2.json +460 -0
- package/scripts/test/test_transition2.json~ +62 -0
- package/scripts/test/test_transition3.json +70 -0
- package/scripts/test/test_transition3.json~ +76 -0
- package/scripts/test/test_transition_no_audio.json +16 -0
- package/scripts/test/test_video_filters.json~ +227 -0
- package/scripts/test/test_wipe_simple.json +37 -0
- package/scripts/test/test_all_image.json~ +0 -45
- package/scripts/test/test_all_movie.json~ +0 -37
- package/scripts/test/test_all_tts.json~ +0 -83
- package/scripts/test/test_audio_gemini.json~ +0 -67
- package/scripts/test/test_genai2.json~ +0 -84
- package/scripts/test/test_genai_movie.json~ +0 -22
- package/scripts/test/test_kotodama.json~ +0 -0
- package/scripts/test/test_lipsync2.json~ +0 -24
- package/scripts/test/test_movie2.json~ +0 -40
- package/scripts/test/test_play_to_end.json~ +0 -65
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$mulmocast": {
|
|
3
|
-
"version": "1.1",
|
|
4
|
-
"credit": "closing"
|
|
5
|
-
},
|
|
6
|
-
"canvasSize": {
|
|
7
|
-
"width": 1536,
|
|
8
|
-
"height": 1024
|
|
9
|
-
},
|
|
10
|
-
"speechParams": {
|
|
11
|
-
"speakers": {
|
|
12
|
-
"Presenter": {
|
|
13
|
-
"displayName": {
|
|
14
|
-
"en": "Presenter"
|
|
15
|
-
},
|
|
16
|
-
"voiceId": "shimmer"
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"imageParams": {
|
|
21
|
-
"provider": "openai",
|
|
22
|
-
"style": "<style>Vibrant 3D animation style inspired by K-pop aesthetics, with glossy, stylized characters. The overall visual style combines elements of modern animation, game cinematics, and fashion-forward character design, with sleek outlines, glowing effects, and a polished, cinematic finish.</style>",
|
|
23
|
-
"images": {
|
|
24
|
-
"min": {
|
|
25
|
-
"type": "image",
|
|
26
|
-
"source": {
|
|
27
|
-
"kind": "url",
|
|
28
|
-
"url": "https://raw.githubusercontent.com/receptron/mulmocast-media/refs/heads/main/characters/min_anime.png"
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
},
|
|
33
|
-
"movieParams": {
|
|
34
|
-
"provider": "replicate"
|
|
35
|
-
},
|
|
36
|
-
"soundEffectParams": {
|
|
37
|
-
"provider": "replicate"
|
|
38
|
-
},
|
|
39
|
-
"captionParams": {
|
|
40
|
-
"lang": "en",
|
|
41
|
-
"styles": ["font-size: 64px", "width: 90%", "padding-left: 5%", "padding-right: 5%"]
|
|
42
|
-
},
|
|
43
|
-
"audioParams": {
|
|
44
|
-
"padding": 0,
|
|
45
|
-
"introPadding": 0,
|
|
46
|
-
"closingPadding": 0,
|
|
47
|
-
"outroPadding": 0,
|
|
48
|
-
"bgm": {
|
|
49
|
-
"kind": "url",
|
|
50
|
-
"url": "https://raw.githubusercontent.com/receptron/mulmocast-media/refs/heads/main/music/finetuning_with_you.mp3"
|
|
51
|
-
},
|
|
52
|
-
"bgmVolume": 1,
|
|
53
|
-
"audioVolume": 0,
|
|
54
|
-
"suppressSpeech": true
|
|
55
|
-
},
|
|
56
|
-
"title": "Music Video",
|
|
57
|
-
"lang": "en",
|
|
58
|
-
"beats": [
|
|
59
|
-
{
|
|
60
|
-
"text": "Finetuning with you",
|
|
61
|
-
"moviePrompt": "The singer preparing to sing a song.",
|
|
62
|
-
"playGenMovieToEnd": true
|
|
63
|
-
}
|
|
64
|
-
]
|
|
65
|
-
}
|