mulmocast 1.1.3 → 1.1.5
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.d.ts +0 -1
- package/lib/actions/audio.js +8 -12
- package/lib/actions/images.js +1 -0
- package/lib/actions/movie.js +1 -3
- package/lib/agents/image_openai_agent.js +4 -1
- package/lib/data/index.d.ts +1 -0
- package/lib/data/index.js +1 -0
- package/lib/data/templateDataSet.d.ts +25 -0
- package/lib/data/templateDataSet.js +97 -0
- package/lib/methods/mulmo_presentation_style.d.ts +2 -3
- package/lib/methods/mulmo_presentation_style.js +14 -8
- package/lib/types/agent.d.ts +3 -0
- package/lib/types/schema.d.ts +704 -0
- package/lib/types/schema.js +5 -1
- package/lib/utils/context.d.ts +25 -0
- package/lib/utils/file.d.ts +1 -1
- package/lib/utils/file.js +5 -2
- package/lib/utils/preprocess.d.ts +13 -0
- package/package.json +4 -3
- package/scripts/templates/image_prompt_only_template.ts +95 -0
- package/scripts/test/gpt.json +32 -0
- package/scripts/test/mulmo_story.json +11 -0
- package/scripts/test/test.json +64 -0
- package/scripts/test/test1.json +40 -0
- package/scripts/test/test2.json +66 -0
- package/scripts/test/test_audio.json +151 -0
- package/scripts/test/test_audio_instructions.json +69 -0
- package/scripts/test/test_beats.json +58 -0
- package/scripts/test/test_captions.json +52 -0
- package/scripts/test/test_elevenlabs_models.json +193 -0
- package/scripts/test/test_en.json +29 -0
- package/scripts/test/test_hello.json +17 -0
- package/scripts/test/test_hello_google.json +25 -0
- package/scripts/test/test_html.json +66 -0
- package/scripts/test/test_image_refs.json +49 -0
- package/scripts/test/test_images.json +48 -0
- package/scripts/test/test_lang.json +31 -0
- package/scripts/test/test_layout.json +152 -0
- package/scripts/test/test_lipsync.json +53 -0
- package/scripts/test/test_loop.json +34 -0
- package/scripts/test/test_media.json +244 -0
- package/scripts/test/test_mixed_providers.json +91 -0
- package/scripts/test/test_movie.json +39 -0
- package/scripts/test/test_no_audio.json +252 -0
- package/scripts/test/test_no_audio_with_credit.json +253 -0
- package/scripts/test/test_order.json +68 -0
- package/scripts/test/test_order_portrait.json +72 -0
- package/scripts/test/test_replicate.json +126 -0
- package/scripts/test/test_slideout_left_no_audio.json +45 -0
- package/scripts/test/test_sound_effect.json +41 -0
- package/scripts/test/test_spillover.json +116 -0
- package/scripts/test/test_transition.json +55 -0
- package/scripts/test/test_transition_no_audio.json +45 -0
- package/scripts/test/test_video_speed.json +80 -0
- package/scripts/test/test_voice_over.json +104 -0
- package/scripts/test/test_voices.json +54 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"title": "Audio Instructions Test",
|
|
6
|
+
"speechParams": {
|
|
7
|
+
"speakers": {
|
|
8
|
+
"Presenter": {
|
|
9
|
+
"provider": "openai",
|
|
10
|
+
"voiceId": "shimmer"
|
|
11
|
+
},
|
|
12
|
+
"Presenter2": {
|
|
13
|
+
"provider": "openai",
|
|
14
|
+
"voiceId": "shimmer",
|
|
15
|
+
"speechOptions": {
|
|
16
|
+
"instruction": "Speak in a cheerful and positive tone."
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"beats": [
|
|
22
|
+
{
|
|
23
|
+
"speaker": "Presenter",
|
|
24
|
+
"text": "Hello, I'm a presenter. I have no instructions.",
|
|
25
|
+
"image": {
|
|
26
|
+
"type": "textSlide",
|
|
27
|
+
"slide": {
|
|
28
|
+
"title": "Presenter"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"speaker": "Presenter2",
|
|
34
|
+
"text": "Hello, I'm a presenter 2. My instructions are 'Speak in a cheerful and positive tone'.",
|
|
35
|
+
"image": {
|
|
36
|
+
"type": "textSlide",
|
|
37
|
+
"slide": {
|
|
38
|
+
"title": "Presenter 2"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"speaker": "Presenter",
|
|
44
|
+
"text": "Hello, I'm a presenter. I have a British English instruction.",
|
|
45
|
+
"speechOptions": {
|
|
46
|
+
"instruction": "Speak in British English."
|
|
47
|
+
},
|
|
48
|
+
"image": {
|
|
49
|
+
"type": "textSlide",
|
|
50
|
+
"slide": {
|
|
51
|
+
"title": "Presenter with British English instruction"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"speaker": "Presenter",
|
|
57
|
+
"text": "Hello, I'm a presenter. I have a whisper instruction.",
|
|
58
|
+
"speechOptions": {
|
|
59
|
+
"instruction": "Whisper softly, like a pillow talk."
|
|
60
|
+
},
|
|
61
|
+
"image": {
|
|
62
|
+
"type": "textSlide",
|
|
63
|
+
"slide": {
|
|
64
|
+
"title": "Presenter with whisper instruction"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
]
|
|
69
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"title": "Beat Reference Test",
|
|
6
|
+
"beats": [
|
|
7
|
+
{
|
|
8
|
+
"text": "This is the first beat.",
|
|
9
|
+
"id": "first",
|
|
10
|
+
"image": {
|
|
11
|
+
"type": "textSlide",
|
|
12
|
+
"slide": {
|
|
13
|
+
"title": "This is the first beat."
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"text": "This is the second beat.",
|
|
19
|
+
"id": "second",
|
|
20
|
+
"image": {
|
|
21
|
+
"type": "textSlide",
|
|
22
|
+
"slide": {
|
|
23
|
+
"title": "This is the second beat."
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"speaker": "Presenter",
|
|
29
|
+
"text": "This beat uses the image from the previous beat.",
|
|
30
|
+
"image": {
|
|
31
|
+
"type": "beat"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"speaker": "Presenter",
|
|
36
|
+
"text": "This beat uses the image from the previous beat again.",
|
|
37
|
+
"image": {
|
|
38
|
+
"type": "beat"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"speaker": "Presenter",
|
|
43
|
+
"text": "This beat uses the image from the first beat.",
|
|
44
|
+
"image": {
|
|
45
|
+
"type": "beat",
|
|
46
|
+
"id": "first"
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"speaker": "Presenter",
|
|
51
|
+
"text": "This beat uses the image from the second beat.",
|
|
52
|
+
"image": {
|
|
53
|
+
"type": "beat",
|
|
54
|
+
"id": "second"
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"captionParams": {
|
|
6
|
+
"lang": "ja",
|
|
7
|
+
"styles": ["color: yellow"]
|
|
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
|
+
"text": "Hello World. May the force be with you. This is a long caption. This is a really long caption.",
|
|
22
|
+
"image": {
|
|
23
|
+
"type": "textSlide",
|
|
24
|
+
"slide": {
|
|
25
|
+
"title": "Hello World",
|
|
26
|
+
"bullets": ["Hello", "World"]
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"text": "Hello World",
|
|
32
|
+
"image": {
|
|
33
|
+
"type": "textSlide",
|
|
34
|
+
"slide": {
|
|
35
|
+
"title": "Hello World",
|
|
36
|
+
"bullets": ["Hello", "World"]
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"captionParams": {
|
|
40
|
+
"styles": [
|
|
41
|
+
"font-family: Helvetica, sans-serif",
|
|
42
|
+
"font-weight: bold",
|
|
43
|
+
"color: #000000",
|
|
44
|
+
"background: rgba(255, 255, 0, 0.8)",
|
|
45
|
+
"font-size: 64px",
|
|
46
|
+
"text-align: left",
|
|
47
|
+
"text-shadow: 0px 0px 20px rgba(255, 255, 0, 1.0)"
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
}
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"title": "ElevenLabs Model Test",
|
|
6
|
+
"references": [
|
|
7
|
+
{
|
|
8
|
+
"url": "https://elevenlabs.io/docs/models",
|
|
9
|
+
"title": "Models | ElevenLabs Documentation",
|
|
10
|
+
"type": "article"
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"canvasSize": {
|
|
14
|
+
"width": 1280,
|
|
15
|
+
"height": 720
|
|
16
|
+
},
|
|
17
|
+
"speechParams": {
|
|
18
|
+
"speakers": {
|
|
19
|
+
"DefaultModel": {
|
|
20
|
+
"provider": "elevenlabs",
|
|
21
|
+
"voiceId": "21m00Tcm4TlvDq8ikWAM",
|
|
22
|
+
"displayName": {
|
|
23
|
+
"en": "Default Model"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"MultilingualV2": {
|
|
27
|
+
"provider": "elevenlabs",
|
|
28
|
+
"voiceId": "21m00Tcm4TlvDq8ikWAM",
|
|
29
|
+
"model": "eleven_multilingual_v2",
|
|
30
|
+
"displayName": {
|
|
31
|
+
"en": "Multilingual V2"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"TurboV2_5": {
|
|
35
|
+
"provider": "elevenlabs",
|
|
36
|
+
"voiceId": "21m00Tcm4TlvDq8ikWAM",
|
|
37
|
+
"model": "eleven_turbo_v2_5",
|
|
38
|
+
"displayName": {
|
|
39
|
+
"en": "Turbo V2.5"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"TurboV2": {
|
|
43
|
+
"provider": "elevenlabs",
|
|
44
|
+
"voiceId": "21m00Tcm4TlvDq8ikWAM",
|
|
45
|
+
"model": "eleven_turbo_v2",
|
|
46
|
+
"displayName": {
|
|
47
|
+
"en": "Turbo V2"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"FlashV2_5": {
|
|
51
|
+
"provider": "elevenlabs",
|
|
52
|
+
"voiceId": "21m00Tcm4TlvDq8ikWAM",
|
|
53
|
+
"model": "eleven_flash_v2_5",
|
|
54
|
+
"displayName": {
|
|
55
|
+
"en": "Flash V2.5"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"FlashV2": {
|
|
59
|
+
"provider": "elevenlabs",
|
|
60
|
+
"voiceId": "21m00Tcm4TlvDq8ikWAM",
|
|
61
|
+
"model": "eleven_flash_v2",
|
|
62
|
+
"displayName": {
|
|
63
|
+
"en": "Flash V2"
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
"MultilingualJapanese": {
|
|
67
|
+
"provider": "elevenlabs",
|
|
68
|
+
"voiceId": "Mv8AjrYZCBkdsmDHNwcB",
|
|
69
|
+
"model": "eleven_multilingual_v2",
|
|
70
|
+
"displayName": {
|
|
71
|
+
"en": "Multilingual Japanese"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"TurboJapanese": {
|
|
75
|
+
"provider": "elevenlabs",
|
|
76
|
+
"voiceId": "Mv8AjrYZCBkdsmDHNwcB",
|
|
77
|
+
"model": "eleven_turbo_v2_5",
|
|
78
|
+
"displayName": {
|
|
79
|
+
"en": "Turbo Japanese"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"FlashJapanese": {
|
|
83
|
+
"provider": "elevenlabs",
|
|
84
|
+
"voiceId": "Mv8AjrYZCBkdsmDHNwcB",
|
|
85
|
+
"model": "eleven_flash_v2_5",
|
|
86
|
+
"displayName": {
|
|
87
|
+
"en": "Flash Japanese"
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"beats": [
|
|
93
|
+
{
|
|
94
|
+
"speaker": "DefaultModel",
|
|
95
|
+
"text": "Testing the default model, which should be eleven_multilingual_v2. This model provides lifelike and consistent quality speech synthesis.",
|
|
96
|
+
"image": {
|
|
97
|
+
"type": "textSlide",
|
|
98
|
+
"slide": {
|
|
99
|
+
"title": "Default Model Test",
|
|
100
|
+
"subtitle": "Uses eleven_multilingual_v2"
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"speaker": "MultilingualV2",
|
|
106
|
+
"text": "Testing Multilingual v2 model. This is a professional quality model supporting 29 languages with rich emotional expression.",
|
|
107
|
+
"image": {
|
|
108
|
+
"type": "textSlide",
|
|
109
|
+
"slide": {
|
|
110
|
+
"title": "Multilingual V2",
|
|
111
|
+
"subtitle": "Professional quality, 29 languages"
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"speaker": "TurboV2_5",
|
|
117
|
+
"text": "Testing Turbo v2.5, a high quality model with low latency around 250 to 300 milliseconds, supporting 32 languages.",
|
|
118
|
+
"image": {
|
|
119
|
+
"type": "textSlide",
|
|
120
|
+
"slide": {
|
|
121
|
+
"title": "Turbo V2.5",
|
|
122
|
+
"subtitle": "Balanced quality and speed, 32 languages"
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"speaker": "TurboV2",
|
|
128
|
+
"text": "Testing Turbo v2, an English-only model with balanced quality and performance for low-latency applications.",
|
|
129
|
+
"image": {
|
|
130
|
+
"type": "textSlide",
|
|
131
|
+
"slide": {
|
|
132
|
+
"title": "Turbo V2",
|
|
133
|
+
"subtitle": "English-only balanced model"
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"speaker": "FlashV2_5",
|
|
139
|
+
"text": "Testing Flash v2.5, an ultra-fast model optimized for real-time use with approximately 75 milliseconds latency, supporting 32 languages.",
|
|
140
|
+
"image": {
|
|
141
|
+
"type": "textSlide",
|
|
142
|
+
"slide": {
|
|
143
|
+
"title": "Flash V2.5",
|
|
144
|
+
"subtitle": "Ultra-fast (~75ms), 32 languages"
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"speaker": "FlashV2",
|
|
150
|
+
"text": "Testing Flash v2, an English-only ultra-fast model optimized for real-time and conversational AI applications.",
|
|
151
|
+
"image": {
|
|
152
|
+
"type": "textSlide",
|
|
153
|
+
"slide": {
|
|
154
|
+
"title": "Flash V2",
|
|
155
|
+
"subtitle": "English-only ultra-fast model"
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"speaker": "MultilingualJapanese",
|
|
161
|
+
"text": "こんにちは。これは多言語モデルV2の日本語テストです。29言語に対応し、豊かな感情表現を持つプロフェッショナル品質のモデルです。",
|
|
162
|
+
"image": {
|
|
163
|
+
"type": "textSlide",
|
|
164
|
+
"slide": {
|
|
165
|
+
"title": "多言語V2日本語テスト",
|
|
166
|
+
"subtitle": "プロ品質の音声合成"
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"speaker": "TurboJapanese",
|
|
172
|
+
"text": "おはようございます。Turbo V2.5モデルの日本語テストです。品質と速度のバランスが取れた、32言語対応のモデルです。",
|
|
173
|
+
"image": {
|
|
174
|
+
"type": "textSlide",
|
|
175
|
+
"slide": {
|
|
176
|
+
"title": "Turbo V2.5日本語テスト",
|
|
177
|
+
"subtitle": "低レイテンシー(250-300ms)"
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"speaker": "FlashJapanese",
|
|
183
|
+
"text": "Flash V2.5モデルの日本語テストです。約75ミリ秒の超低レイテンシーで、リアルタイム用途に最適化されています。",
|
|
184
|
+
"image": {
|
|
185
|
+
"type": "textSlide",
|
|
186
|
+
"slide": {
|
|
187
|
+
"title": "Flash V2.5日本語テスト",
|
|
188
|
+
"subtitle": "超高速(~75ms)"
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
]
|
|
193
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1",
|
|
4
|
+
"credit": "closing"
|
|
5
|
+
},
|
|
6
|
+
"title": "THE ROAD TO SUPERINTELLIGENCE: EXPLORING AI-2027",
|
|
7
|
+
"description": "This episode examines the AI-2027 forecast, a detailed scenario predicting the development of artificial superintelligence by 2027-2028. We explore the three key stages of development, geopolitical implications, and how AI research automation could create an intelligence explosion with profound consequences for humanity's future.",
|
|
8
|
+
"speechParams": {
|
|
9
|
+
"speakers": {
|
|
10
|
+
"Host": {
|
|
11
|
+
"voiceId": "shimmer",
|
|
12
|
+
"displayName": {
|
|
13
|
+
"en": "Host"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"lang": "en",
|
|
19
|
+
"beats": [
|
|
20
|
+
{
|
|
21
|
+
"speaker": "Host",
|
|
22
|
+
"text": "Welcome to Mulmocast Tech Insights."
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"speaker": "Host",
|
|
26
|
+
"text": "AI-2028 is a project from the AI Futures Project."
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"speechParams": {
|
|
6
|
+
"speakers": {
|
|
7
|
+
"Presenter": {
|
|
8
|
+
"provider": "google",
|
|
9
|
+
"voiceId": "en-US-Studio-O"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"beats": [
|
|
14
|
+
{
|
|
15
|
+
"text": "Hello Google, Bye Google",
|
|
16
|
+
"image": {
|
|
17
|
+
"type": "textSlide",
|
|
18
|
+
"slide": {
|
|
19
|
+
"title": "Hello Google",
|
|
20
|
+
"bullets": ["Hello", "Google"]
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"title": "Media Test",
|
|
6
|
+
"beats": [
|
|
7
|
+
{
|
|
8
|
+
"speaker": "Presenter",
|
|
9
|
+
"text": "これは日本の出生数、合計特殊出生率の推移です。",
|
|
10
|
+
"htmlPrompt": {
|
|
11
|
+
"prompt": "これは日本の出生数、合計特殊出生率の推移です。これをグラフ化しつつ、問題点を指摘してください",
|
|
12
|
+
"data": [
|
|
13
|
+
{ "year": 1978, "births": 1708643, "fertility_rate": 1.79 },
|
|
14
|
+
{ "year": 1979, "births": 1642580, "fertility_rate": 1.77 },
|
|
15
|
+
{ "year": 1980, "births": 1576889, "fertility_rate": 1.75 },
|
|
16
|
+
{ "year": 1981, "births": 1529455, "fertility_rate": 1.74 },
|
|
17
|
+
{ "year": 1982, "births": 1515392, "fertility_rate": 1.77 },
|
|
18
|
+
{ "year": 1983, "births": 1508687, "fertility_rate": 1.8 },
|
|
19
|
+
{ "year": 1984, "births": 1489780, "fertility_rate": 1.81 },
|
|
20
|
+
{ "year": 1985, "births": 1431577, "fertility_rate": 1.76 },
|
|
21
|
+
{ "year": 1986, "births": 1382946, "fertility_rate": 1.72 },
|
|
22
|
+
{ "year": 1987, "births": 1346658, "fertility_rate": 1.69 },
|
|
23
|
+
{ "year": 1988, "births": 1314006, "fertility_rate": 1.66 },
|
|
24
|
+
{ "year": 1989, "births": 1246802, "fertility_rate": 1.57 },
|
|
25
|
+
{ "year": 1990, "births": 1221585, "fertility_rate": 1.54 },
|
|
26
|
+
{ "year": 1991, "births": 1223245, "fertility_rate": 1.53 },
|
|
27
|
+
{ "year": 1992, "births": 1208989, "fertility_rate": 1.5 },
|
|
28
|
+
{ "year": 1993, "births": 1188282, "fertility_rate": 1.46 },
|
|
29
|
+
{ "year": 1994, "births": 1238328, "fertility_rate": 1.5 },
|
|
30
|
+
{ "year": 1995, "births": 1187064, "fertility_rate": 1.42 },
|
|
31
|
+
{ "year": 1996, "births": 1206555, "fertility_rate": 1.43 },
|
|
32
|
+
{ "year": 1997, "births": 1191665, "fertility_rate": 1.39 },
|
|
33
|
+
{ "year": 1998, "births": 1203147, "fertility_rate": 1.38 },
|
|
34
|
+
{ "year": 1999, "births": 1177669, "fertility_rate": 1.34 },
|
|
35
|
+
{ "year": 2000, "births": 1190547, "fertility_rate": 1.36 },
|
|
36
|
+
{ "year": 2001, "births": 1170662, "fertility_rate": 1.33 },
|
|
37
|
+
{ "year": 2002, "births": 1153855, "fertility_rate": 1.32 },
|
|
38
|
+
{ "year": 2003, "births": 1123610, "fertility_rate": 1.29 },
|
|
39
|
+
{ "year": 2004, "births": 1110721, "fertility_rate": 1.29 },
|
|
40
|
+
{ "year": 2005, "births": 1062530, "fertility_rate": 1.26 },
|
|
41
|
+
{ "year": 2006, "births": 1092674, "fertility_rate": 1.32 },
|
|
42
|
+
{ "year": 2007, "births": 1089818, "fertility_rate": 1.34 },
|
|
43
|
+
{ "year": 2008, "births": 1091156, "fertility_rate": 1.37 },
|
|
44
|
+
{ "year": 2009, "births": 1070036, "fertility_rate": 1.37 },
|
|
45
|
+
{ "year": 2010, "births": 1071305, "fertility_rate": 1.39 },
|
|
46
|
+
{ "year": 2011, "births": 1050807, "fertility_rate": 1.39 },
|
|
47
|
+
{ "year": 2012, "births": 1037232, "fertility_rate": 1.41 },
|
|
48
|
+
{ "year": 2013, "births": 1029817, "fertility_rate": 1.43 },
|
|
49
|
+
{ "year": 2014, "births": 1003609, "fertility_rate": 1.42 },
|
|
50
|
+
{ "year": 2015, "births": 1005721, "fertility_rate": 1.45 },
|
|
51
|
+
{ "year": 2016, "births": 977242, "fertility_rate": 1.44 },
|
|
52
|
+
{ "year": 2017, "births": 946146, "fertility_rate": 1.43 },
|
|
53
|
+
{ "year": 2018, "births": 918400, "fertility_rate": 1.42 },
|
|
54
|
+
{ "year": 2019, "births": 865234, "fertility_rate": 1.36 }
|
|
55
|
+
]
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"speaker": "Presenter",
|
|
60
|
+
"text": "デジタル赤字の問題点 まず1つ目は、一般の貿易赤字や輸入超過と同じく、海外への依存性が高まることによる経済の自立性の低下です。",
|
|
61
|
+
"htmlPrompt": {
|
|
62
|
+
"prompt": "デジタル赤字の問題点 まず1つ目は、一般の貿易赤字や輸入超過と同じく、海外への依存性が高まることによる経済の自立性の低下です。 また最近のように為替相場が変化することで急激に価格が高騰するなどのリスクもあります。 2つ目として、海外市場における日本のデジタル技術やサービスの競争力の低下と見ることができます"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"title": "Test Image References",
|
|
6
|
+
"imageParams": {
|
|
7
|
+
"style": "Ghibli-style",
|
|
8
|
+
"images": {
|
|
9
|
+
"witch": {
|
|
10
|
+
"type": "imagePrompt",
|
|
11
|
+
"prompt": "A witch with a green hair, wearing a black robe"
|
|
12
|
+
},
|
|
13
|
+
"cat": {
|
|
14
|
+
"type": "imagePrompt",
|
|
15
|
+
"prompt": "A tiny black cat with a green eyes"
|
|
16
|
+
},
|
|
17
|
+
"broom": {
|
|
18
|
+
"type": "imagePrompt",
|
|
19
|
+
"prompt": "A yellow, old broomstick"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"beats": [
|
|
24
|
+
{
|
|
25
|
+
"text": "Hello World with a witch and a broom",
|
|
26
|
+
"imagePrompt": "Saying hello to the world",
|
|
27
|
+
"imageNames": ["witch", "broom"]
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"text": "Hello World with a cat alone",
|
|
31
|
+
"imagePrompt": "Saying hello to the world",
|
|
32
|
+
"imageNames": ["cat"]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"text": "Hello World with a witch and a cat",
|
|
36
|
+
"imagePrompt": "Saying hello to the world",
|
|
37
|
+
"imageNames": ["witch", "cat"]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"text": "Hello World with all reference images",
|
|
41
|
+
"imagePrompt": "Saying hello to the world"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"text": "Hello World with no reference image",
|
|
45
|
+
"imagePrompt": "Saying hello to the world",
|
|
46
|
+
"imageNames": []
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"title": "Test Images",
|
|
6
|
+
"imageParams": {
|
|
7
|
+
"style": "Photorealistic-style",
|
|
8
|
+
"provider": "google"
|
|
9
|
+
},
|
|
10
|
+
"beats": [
|
|
11
|
+
{
|
|
12
|
+
"text": "Image with default provider and model",
|
|
13
|
+
"imagePrompt": "Blue sky, a flock of birds"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"text": "Image with openai provider",
|
|
17
|
+
"imagePrompt": "Blue sky, a flock of birds",
|
|
18
|
+
"imageParams": {
|
|
19
|
+
"provider": "openai"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"text": "Image with Dall-E 3",
|
|
24
|
+
"imagePrompt": "Blue sky, a flock of birds",
|
|
25
|
+
"imageParams": {
|
|
26
|
+
"model": "dall-e-3",
|
|
27
|
+
"style": "anime-style",
|
|
28
|
+
"provider": "openai"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"id": "image_with_quality",
|
|
33
|
+
"text": "Image with low quality",
|
|
34
|
+
"imagePrompt": "Blue sky, a flock of birds",
|
|
35
|
+
"imageParams": {
|
|
36
|
+
"quality": "low"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"id": "image_with_medium_quality",
|
|
41
|
+
"text": "Image with medium quality",
|
|
42
|
+
"imagePrompt": "Blue sky, a flock of birds",
|
|
43
|
+
"imageParams": {
|
|
44
|
+
"quality": "medium"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1"
|
|
4
|
+
},
|
|
5
|
+
"lang": "ja",
|
|
6
|
+
"speechParams": {
|
|
7
|
+
"speakers": {
|
|
8
|
+
"Presenter": {
|
|
9
|
+
"provider": "openai",
|
|
10
|
+
"voiceId": "shimmer",
|
|
11
|
+
"lang": {
|
|
12
|
+
"ja": {
|
|
13
|
+
"provider": "nijivoice",
|
|
14
|
+
"voiceId": "9d9ed276-49ee-443a-bc19-26e6136d05f0"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"beats": [
|
|
21
|
+
{
|
|
22
|
+
"text": "こんにちは",
|
|
23
|
+
"image": {
|
|
24
|
+
"type": "textSlide",
|
|
25
|
+
"slide": {
|
|
26
|
+
"title": "Hello World"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|