mulmocast 0.0.28 → 0.1.1
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/README.md +25 -8
- package/assets/templates/ghibli_shorts.json +2 -2
- package/assets/templates/sensei_and_taro.json +1 -1
- package/lib/actions/captions.js +16 -2
- package/lib/actions/images.d.ts +5 -2
- package/lib/actions/images.js +14 -34
- package/lib/actions/movie.d.ts +1 -1
- package/lib/actions/movie.js +110 -77
- package/lib/agents/add_bgm_agent.js +15 -2
- package/lib/agents/combine_audio_files_agent.js +53 -5
- package/lib/agents/tts_openai_agent.js +2 -1
- package/lib/cli/commands/tool/scripting/handler.js +1 -0
- package/lib/methods/mulmo_presentation_style.d.ts +3 -2
- package/lib/methods/mulmo_presentation_style.js +8 -4
- package/lib/types/schema.d.ts +309 -115
- package/lib/types/schema.js +48 -11
- package/lib/types/type.d.ts +5 -2
- package/lib/utils/context.d.ts +13 -4
- package/lib/utils/file.js +8 -0
- package/lib/utils/image_plugins/index.d.ts +2 -1
- package/lib/utils/image_plugins/index.js +2 -1
- package/lib/utils/image_plugins/voice_over.d.ts +5 -0
- package/lib/utils/image_plugins/voice_over.js +9 -0
- package/lib/utils/preprocess.d.ts +12 -3
- package/lib/utils/utils.d.ts +1 -0
- package/lib/utils/utils.js +14 -0
- package/package.json +12 -12
- package/scripts/templates/voice_over.json +60 -0
package/lib/types/schema.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export declare const speechOptionsSchema: z.ZodObject<{
|
|
|
48
48
|
speed?: number | undefined;
|
|
49
49
|
instruction?: string | undefined;
|
|
50
50
|
}>;
|
|
51
|
-
export declare const text2SpeechProviderSchema: z.ZodDefault<z.
|
|
51
|
+
export declare const text2SpeechProviderSchema: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
52
52
|
export declare const speakerDataSchema: z.ZodObject<{
|
|
53
53
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
54
54
|
voiceId: z.ZodString;
|
|
@@ -62,7 +62,7 @@ export declare const speakerDataSchema: z.ZodObject<{
|
|
|
62
62
|
speed?: number | undefined;
|
|
63
63
|
instruction?: string | undefined;
|
|
64
64
|
}>>;
|
|
65
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
65
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
66
66
|
}, "strict", z.ZodTypeAny, {
|
|
67
67
|
voiceId: string;
|
|
68
68
|
displayName?: Record<string, string> | undefined;
|
|
@@ -93,7 +93,7 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
93
93
|
speed?: number | undefined;
|
|
94
94
|
instruction?: string | undefined;
|
|
95
95
|
}>>;
|
|
96
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
96
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
97
97
|
}, "strict", z.ZodTypeAny, {
|
|
98
98
|
voiceId: string;
|
|
99
99
|
displayName?: Record<string, string> | undefined;
|
|
@@ -377,6 +377,16 @@ export declare const mulmoBeatReferenceMediaSchema: z.ZodObject<{
|
|
|
377
377
|
type: "beat";
|
|
378
378
|
id?: string | undefined;
|
|
379
379
|
}>;
|
|
380
|
+
export declare const mulmoVoiceOverMediaSchema: z.ZodObject<{
|
|
381
|
+
type: z.ZodLiteral<"voice_over">;
|
|
382
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
383
|
+
}, "strict", z.ZodTypeAny, {
|
|
384
|
+
type: "voice_over";
|
|
385
|
+
startAt?: number | undefined;
|
|
386
|
+
}, {
|
|
387
|
+
type: "voice_over";
|
|
388
|
+
startAt?: number | undefined;
|
|
389
|
+
}>;
|
|
380
390
|
export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
381
391
|
type: z.ZodLiteral<"markdown">;
|
|
382
392
|
markdown: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
@@ -809,6 +819,15 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
809
819
|
}, {
|
|
810
820
|
type: "beat";
|
|
811
821
|
id?: string | undefined;
|
|
822
|
+
}>, z.ZodObject<{
|
|
823
|
+
type: z.ZodLiteral<"voice_over">;
|
|
824
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
825
|
+
}, "strict", z.ZodTypeAny, {
|
|
826
|
+
type: "voice_over";
|
|
827
|
+
startAt?: number | undefined;
|
|
828
|
+
}, {
|
|
829
|
+
type: "voice_over";
|
|
830
|
+
startAt?: number | undefined;
|
|
812
831
|
}>]>;
|
|
813
832
|
export declare const mulmoAudioAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
814
833
|
type: z.ZodLiteral<"audio">;
|
|
@@ -966,7 +985,29 @@ export declare const mulmoFillOptionSchema: z.ZodObject<{
|
|
|
966
985
|
}, {
|
|
967
986
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
968
987
|
}>;
|
|
988
|
+
export declare const text2ImageProviderSchema: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
989
|
+
export declare const mulmoOpenAIImageModelSchema: z.ZodObject<{
|
|
990
|
+
provider: z.ZodLiteral<"openai">;
|
|
991
|
+
model: z.ZodOptional<z.ZodEnum<["dall-e-3", "gpt-image-1"]>>;
|
|
992
|
+
}, "strict", z.ZodTypeAny, {
|
|
993
|
+
provider: "openai";
|
|
994
|
+
model?: "dall-e-3" | "gpt-image-1" | undefined;
|
|
995
|
+
}, {
|
|
996
|
+
provider: "openai";
|
|
997
|
+
model?: "dall-e-3" | "gpt-image-1" | undefined;
|
|
998
|
+
}>;
|
|
999
|
+
export declare const mulmoGoogleImageModelSchema: z.ZodObject<{
|
|
1000
|
+
provider: z.ZodLiteral<"google">;
|
|
1001
|
+
model: z.ZodOptional<z.ZodEnum<["imagen-3.0-fast-generate-001", "imagen-3.0-generate-002", "imagen-3.0-capability-001"]>>;
|
|
1002
|
+
}, "strict", z.ZodTypeAny, {
|
|
1003
|
+
provider: "google";
|
|
1004
|
+
model?: "imagen-3.0-fast-generate-001" | "imagen-3.0-generate-002" | "imagen-3.0-capability-001" | undefined;
|
|
1005
|
+
}, {
|
|
1006
|
+
provider: "google";
|
|
1007
|
+
model?: "imagen-3.0-fast-generate-001" | "imagen-3.0-generate-002" | "imagen-3.0-capability-001" | undefined;
|
|
1008
|
+
}>;
|
|
969
1009
|
export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
1010
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
970
1011
|
model: z.ZodOptional<z.ZodString>;
|
|
971
1012
|
style: z.ZodOptional<z.ZodString>;
|
|
972
1013
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -1041,6 +1082,7 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1041
1082
|
};
|
|
1042
1083
|
}>>>;
|
|
1043
1084
|
}, "strict", z.ZodTypeAny, {
|
|
1085
|
+
provider: "openai" | "google";
|
|
1044
1086
|
style?: string | undefined;
|
|
1045
1087
|
model?: string | undefined;
|
|
1046
1088
|
moderation?: string | undefined;
|
|
@@ -1061,6 +1103,7 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1061
1103
|
};
|
|
1062
1104
|
}> | undefined;
|
|
1063
1105
|
}, {
|
|
1106
|
+
provider?: "openai" | "google" | undefined;
|
|
1064
1107
|
style?: string | undefined;
|
|
1065
1108
|
model?: string | undefined;
|
|
1066
1109
|
moderation?: string | undefined;
|
|
@@ -1643,6 +1686,15 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1643
1686
|
}, {
|
|
1644
1687
|
type: "beat";
|
|
1645
1688
|
id?: string | undefined;
|
|
1689
|
+
}>, z.ZodObject<{
|
|
1690
|
+
type: z.ZodLiteral<"voice_over">;
|
|
1691
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
1692
|
+
}, "strict", z.ZodTypeAny, {
|
|
1693
|
+
type: "voice_over";
|
|
1694
|
+
startAt?: number | undefined;
|
|
1695
|
+
}, {
|
|
1696
|
+
type: "voice_over";
|
|
1697
|
+
startAt?: number | undefined;
|
|
1646
1698
|
}>]>>;
|
|
1647
1699
|
audio: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1648
1700
|
type: z.ZodLiteral<"audio">;
|
|
@@ -1725,6 +1777,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1725
1777
|
}>]>>;
|
|
1726
1778
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
1727
1779
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
1780
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
1728
1781
|
model: z.ZodOptional<z.ZodString>;
|
|
1729
1782
|
style: z.ZodOptional<z.ZodString>;
|
|
1730
1783
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -1799,6 +1852,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1799
1852
|
};
|
|
1800
1853
|
}>>>;
|
|
1801
1854
|
}, "strict", z.ZodTypeAny, {
|
|
1855
|
+
provider: "openai" | "google";
|
|
1802
1856
|
style?: string | undefined;
|
|
1803
1857
|
model?: string | undefined;
|
|
1804
1858
|
moderation?: string | undefined;
|
|
@@ -1819,6 +1873,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1819
1873
|
};
|
|
1820
1874
|
}> | undefined;
|
|
1821
1875
|
}, {
|
|
1876
|
+
provider?: "openai" | "google" | undefined;
|
|
1822
1877
|
style?: string | undefined;
|
|
1823
1878
|
model?: string | undefined;
|
|
1824
1879
|
moderation?: string | undefined;
|
|
@@ -1847,21 +1902,24 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1847
1902
|
padding?: number | undefined;
|
|
1848
1903
|
}>>;
|
|
1849
1904
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
1850
|
-
fillOption: z.ZodObject<{
|
|
1905
|
+
fillOption: z.ZodOptional<z.ZodObject<{
|
|
1851
1906
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
1852
1907
|
}, "strip", z.ZodTypeAny, {
|
|
1853
1908
|
style: "aspectFit" | "aspectFill";
|
|
1854
1909
|
}, {
|
|
1855
1910
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
1856
|
-
}
|
|
1911
|
+
}>>;
|
|
1912
|
+
speed: z.ZodOptional<z.ZodNumber>;
|
|
1857
1913
|
}, "strip", z.ZodTypeAny, {
|
|
1858
|
-
|
|
1914
|
+
speed?: number | undefined;
|
|
1915
|
+
fillOption?: {
|
|
1859
1916
|
style: "aspectFit" | "aspectFill";
|
|
1860
|
-
};
|
|
1917
|
+
} | undefined;
|
|
1861
1918
|
}, {
|
|
1862
|
-
|
|
1919
|
+
speed?: number | undefined;
|
|
1920
|
+
fillOption?: {
|
|
1863
1921
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
1864
|
-
};
|
|
1922
|
+
} | undefined;
|
|
1865
1923
|
}>>;
|
|
1866
1924
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
1867
1925
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -2009,6 +2067,9 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2009
2067
|
} | {
|
|
2010
2068
|
type: "beat";
|
|
2011
2069
|
id?: string | undefined;
|
|
2070
|
+
} | {
|
|
2071
|
+
type: "voice_over";
|
|
2072
|
+
startAt?: number | undefined;
|
|
2012
2073
|
} | {
|
|
2013
2074
|
type: "movie";
|
|
2014
2075
|
source: {
|
|
@@ -2048,6 +2109,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2048
2109
|
} | undefined;
|
|
2049
2110
|
description?: string | undefined;
|
|
2050
2111
|
imageParams?: {
|
|
2112
|
+
provider: "openai" | "google";
|
|
2051
2113
|
style?: string | undefined;
|
|
2052
2114
|
model?: string | undefined;
|
|
2053
2115
|
moderation?: string | undefined;
|
|
@@ -2072,9 +2134,10 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2072
2134
|
padding?: number | undefined;
|
|
2073
2135
|
} | undefined;
|
|
2074
2136
|
movieParams?: {
|
|
2075
|
-
|
|
2137
|
+
speed?: number | undefined;
|
|
2138
|
+
fillOption?: {
|
|
2076
2139
|
style: "aspectFit" | "aspectFill";
|
|
2077
|
-
};
|
|
2140
|
+
} | undefined;
|
|
2078
2141
|
} | undefined;
|
|
2079
2142
|
htmlImageParams?: {
|
|
2080
2143
|
model?: string | undefined;
|
|
@@ -2187,6 +2250,9 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2187
2250
|
} | {
|
|
2188
2251
|
type: "beat";
|
|
2189
2252
|
id?: string | undefined;
|
|
2253
|
+
} | {
|
|
2254
|
+
type: "voice_over";
|
|
2255
|
+
startAt?: number | undefined;
|
|
2190
2256
|
} | {
|
|
2191
2257
|
type: "movie";
|
|
2192
2258
|
source: {
|
|
@@ -2227,6 +2293,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2227
2293
|
speaker?: string | undefined;
|
|
2228
2294
|
description?: string | undefined;
|
|
2229
2295
|
imageParams?: {
|
|
2296
|
+
provider?: "openai" | "google" | undefined;
|
|
2230
2297
|
style?: string | undefined;
|
|
2231
2298
|
model?: string | undefined;
|
|
2232
2299
|
moderation?: string | undefined;
|
|
@@ -2251,9 +2318,10 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2251
2318
|
padding?: number | undefined;
|
|
2252
2319
|
} | undefined;
|
|
2253
2320
|
movieParams?: {
|
|
2254
|
-
|
|
2321
|
+
speed?: number | undefined;
|
|
2322
|
+
fillOption?: {
|
|
2255
2323
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
2256
|
-
};
|
|
2324
|
+
} | undefined;
|
|
2257
2325
|
} | undefined;
|
|
2258
2326
|
htmlImageParams?: {
|
|
2259
2327
|
model?: string | undefined;
|
|
@@ -2296,7 +2364,7 @@ export declare const mulmoCastCreditSchema: z.ZodObject<{
|
|
|
2296
2364
|
credit?: "closing" | undefined;
|
|
2297
2365
|
}>;
|
|
2298
2366
|
export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
2299
|
-
provider: z.ZodDefault<z.
|
|
2367
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
2300
2368
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2301
2369
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2302
2370
|
voiceId: z.ZodString;
|
|
@@ -2310,7 +2378,7 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2310
2378
|
speed?: number | undefined;
|
|
2311
2379
|
instruction?: string | undefined;
|
|
2312
2380
|
}>>;
|
|
2313
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
2381
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
2314
2382
|
}, "strict", z.ZodTypeAny, {
|
|
2315
2383
|
voiceId: string;
|
|
2316
2384
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2351,9 +2419,28 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2351
2419
|
}>;
|
|
2352
2420
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
2353
2421
|
}>;
|
|
2354
|
-
export declare const
|
|
2355
|
-
export declare const
|
|
2356
|
-
export declare const
|
|
2422
|
+
export declare const text2HtmlImageProviderSchema: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
2423
|
+
export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodEnum<["google", "replicate"]>>;
|
|
2424
|
+
export declare const mulmoGoogleMovieModelSchema: z.ZodObject<{
|
|
2425
|
+
provider: z.ZodLiteral<"google">;
|
|
2426
|
+
model: z.ZodOptional<z.ZodEnum<["veo-2.0-generate-001"]>>;
|
|
2427
|
+
}, "strict", z.ZodTypeAny, {
|
|
2428
|
+
provider: "google";
|
|
2429
|
+
model?: "veo-2.0-generate-001" | undefined;
|
|
2430
|
+
}, {
|
|
2431
|
+
provider: "google";
|
|
2432
|
+
model?: "veo-2.0-generate-001" | undefined;
|
|
2433
|
+
}>;
|
|
2434
|
+
export declare const mulmoReplicateMovieModelSchema: z.ZodObject<{
|
|
2435
|
+
provider: z.ZodLiteral<"replicate">;
|
|
2436
|
+
model: z.ZodOptional<z.ZodEnum<["bytedance/seedance-1-lite", "kwaivgi/kling-v2.1", "google/veo-3"]>>;
|
|
2437
|
+
}, "strict", z.ZodTypeAny, {
|
|
2438
|
+
provider: "replicate";
|
|
2439
|
+
model?: "bytedance/seedance-1-lite" | "kwaivgi/kling-v2.1" | "google/veo-3" | undefined;
|
|
2440
|
+
}, {
|
|
2441
|
+
provider: "replicate";
|
|
2442
|
+
model?: "bytedance/seedance-1-lite" | "kwaivgi/kling-v2.1" | "google/veo-3" | undefined;
|
|
2443
|
+
}>;
|
|
2357
2444
|
export declare const mulmoTransitionSchema: z.ZodObject<{
|
|
2358
2445
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
2359
2446
|
duration: z.ZodDefault<z.ZodNumber>;
|
|
@@ -2365,7 +2452,7 @@ export declare const mulmoTransitionSchema: z.ZodObject<{
|
|
|
2365
2452
|
duration?: number | undefined;
|
|
2366
2453
|
}>;
|
|
2367
2454
|
export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
2368
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
2455
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
2369
2456
|
model: z.ZodOptional<z.ZodString>;
|
|
2370
2457
|
transition: z.ZodOptional<z.ZodObject<{
|
|
2371
2458
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -2385,7 +2472,7 @@ export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
|
2385
2472
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
2386
2473
|
}>>;
|
|
2387
2474
|
}, "strict", z.ZodTypeAny, {
|
|
2388
|
-
provider?: "
|
|
2475
|
+
provider?: "google" | "replicate" | undefined;
|
|
2389
2476
|
model?: string | undefined;
|
|
2390
2477
|
fillOption?: {
|
|
2391
2478
|
style: "aspectFit" | "aspectFill";
|
|
@@ -2395,7 +2482,7 @@ export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
|
2395
2482
|
duration: number;
|
|
2396
2483
|
} | undefined;
|
|
2397
2484
|
}, {
|
|
2398
|
-
provider?: "
|
|
2485
|
+
provider?: "google" | "replicate" | undefined;
|
|
2399
2486
|
model?: string | undefined;
|
|
2400
2487
|
fillOption?: {
|
|
2401
2488
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -2427,7 +2514,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2427
2514
|
height: number;
|
|
2428
2515
|
}>>;
|
|
2429
2516
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
2430
|
-
provider: z.ZodDefault<z.
|
|
2517
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
2431
2518
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2432
2519
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2433
2520
|
voiceId: z.ZodString;
|
|
@@ -2441,7 +2528,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2441
2528
|
speed?: number | undefined;
|
|
2442
2529
|
instruction?: string | undefined;
|
|
2443
2530
|
}>>;
|
|
2444
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
2531
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
2445
2532
|
}, "strict", z.ZodTypeAny, {
|
|
2446
2533
|
voiceId: string;
|
|
2447
2534
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2483,6 +2570,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2483
2570
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
2484
2571
|
}>>;
|
|
2485
2572
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
2573
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
2486
2574
|
model: z.ZodOptional<z.ZodString>;
|
|
2487
2575
|
style: z.ZodOptional<z.ZodString>;
|
|
2488
2576
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -2556,8 +2644,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2556
2644
|
kind: "path";
|
|
2557
2645
|
};
|
|
2558
2646
|
}>>>;
|
|
2559
|
-
} & {
|
|
2560
|
-
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
2561
2647
|
}, "strict", z.ZodTypeAny, {
|
|
2562
2648
|
provider: "openai" | "google";
|
|
2563
2649
|
style?: string | undefined;
|
|
@@ -2602,7 +2688,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2602
2688
|
}> | undefined;
|
|
2603
2689
|
}>>;
|
|
2604
2690
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
2605
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
2691
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
2606
2692
|
model: z.ZodOptional<z.ZodString>;
|
|
2607
2693
|
transition: z.ZodOptional<z.ZodObject<{
|
|
2608
2694
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -2622,7 +2708,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2622
2708
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
2623
2709
|
}>>;
|
|
2624
2710
|
}, "strict", z.ZodTypeAny, {
|
|
2625
|
-
provider?: "
|
|
2711
|
+
provider?: "google" | "replicate" | undefined;
|
|
2626
2712
|
model?: string | undefined;
|
|
2627
2713
|
fillOption?: {
|
|
2628
2714
|
style: "aspectFit" | "aspectFill";
|
|
@@ -2632,7 +2718,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2632
2718
|
duration: number;
|
|
2633
2719
|
} | undefined;
|
|
2634
2720
|
}, {
|
|
2635
|
-
provider?: "
|
|
2721
|
+
provider?: "google" | "replicate" | undefined;
|
|
2636
2722
|
model?: string | undefined;
|
|
2637
2723
|
fillOption?: {
|
|
2638
2724
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -2645,7 +2731,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2645
2731
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
2646
2732
|
model: z.ZodOptional<z.ZodString>;
|
|
2647
2733
|
} & {
|
|
2648
|
-
provider: z.ZodDefault<z.
|
|
2734
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
2649
2735
|
}, "strict", z.ZodTypeAny, {
|
|
2650
2736
|
provider: "openai" | "anthropic";
|
|
2651
2737
|
model?: string | undefined;
|
|
@@ -2824,7 +2910,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2824
2910
|
}> | undefined;
|
|
2825
2911
|
} | undefined;
|
|
2826
2912
|
movieParams?: {
|
|
2827
|
-
provider?: "
|
|
2913
|
+
provider?: "google" | "replicate" | undefined;
|
|
2828
2914
|
model?: string | undefined;
|
|
2829
2915
|
fillOption?: {
|
|
2830
2916
|
style: "aspectFit" | "aspectFill";
|
|
@@ -2895,7 +2981,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2895
2981
|
suppressSpeech?: boolean | undefined;
|
|
2896
2982
|
} | undefined;
|
|
2897
2983
|
movieParams?: {
|
|
2898
|
-
provider?: "
|
|
2984
|
+
provider?: "google" | "replicate" | undefined;
|
|
2899
2985
|
model?: string | undefined;
|
|
2900
2986
|
fillOption?: {
|
|
2901
2987
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -2937,7 +3023,7 @@ export declare const mulmoReferenceSchema: z.ZodObject<{
|
|
|
2937
3023
|
url: z.ZodString;
|
|
2938
3024
|
title: z.ZodOptional<z.ZodString>;
|
|
2939
3025
|
description: z.ZodOptional<z.ZodString>;
|
|
2940
|
-
type: z.ZodDefault<z.
|
|
3026
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
2941
3027
|
}, "strip", z.ZodTypeAny, {
|
|
2942
3028
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
2943
3029
|
url: string;
|
|
@@ -2971,7 +3057,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
2971
3057
|
height: number;
|
|
2972
3058
|
}>>;
|
|
2973
3059
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
2974
|
-
provider: z.ZodDefault<z.
|
|
3060
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
2975
3061
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2976
3062
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2977
3063
|
voiceId: z.ZodString;
|
|
@@ -2985,7 +3071,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
2985
3071
|
speed?: number | undefined;
|
|
2986
3072
|
instruction?: string | undefined;
|
|
2987
3073
|
}>>;
|
|
2988
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
3074
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
2989
3075
|
}, "strict", z.ZodTypeAny, {
|
|
2990
3076
|
voiceId: string;
|
|
2991
3077
|
displayName?: Record<string, string> | undefined;
|
|
@@ -3027,6 +3113,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3027
3113
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
3028
3114
|
}>>;
|
|
3029
3115
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
3116
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
3030
3117
|
model: z.ZodOptional<z.ZodString>;
|
|
3031
3118
|
style: z.ZodOptional<z.ZodString>;
|
|
3032
3119
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -3100,8 +3187,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3100
3187
|
kind: "path";
|
|
3101
3188
|
};
|
|
3102
3189
|
}>>>;
|
|
3103
|
-
} & {
|
|
3104
|
-
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
3105
3190
|
}, "strict", z.ZodTypeAny, {
|
|
3106
3191
|
provider: "openai" | "google";
|
|
3107
3192
|
style?: string | undefined;
|
|
@@ -3146,7 +3231,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3146
3231
|
}> | undefined;
|
|
3147
3232
|
}>>;
|
|
3148
3233
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
3149
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
3234
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
3150
3235
|
model: z.ZodOptional<z.ZodString>;
|
|
3151
3236
|
transition: z.ZodOptional<z.ZodObject<{
|
|
3152
3237
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -3166,7 +3251,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3166
3251
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
3167
3252
|
}>>;
|
|
3168
3253
|
}, "strict", z.ZodTypeAny, {
|
|
3169
|
-
provider?: "
|
|
3254
|
+
provider?: "google" | "replicate" | undefined;
|
|
3170
3255
|
model?: string | undefined;
|
|
3171
3256
|
fillOption?: {
|
|
3172
3257
|
style: "aspectFit" | "aspectFill";
|
|
@@ -3176,7 +3261,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3176
3261
|
duration: number;
|
|
3177
3262
|
} | undefined;
|
|
3178
3263
|
}, {
|
|
3179
|
-
provider?: "
|
|
3264
|
+
provider?: "google" | "replicate" | undefined;
|
|
3180
3265
|
model?: string | undefined;
|
|
3181
3266
|
fillOption?: {
|
|
3182
3267
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -3189,7 +3274,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3189
3274
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
3190
3275
|
model: z.ZodOptional<z.ZodString>;
|
|
3191
3276
|
} & {
|
|
3192
|
-
provider: z.ZodDefault<z.
|
|
3277
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
3193
3278
|
}, "strict", z.ZodTypeAny, {
|
|
3194
3279
|
provider: "openai" | "anthropic";
|
|
3195
3280
|
model?: string | undefined;
|
|
@@ -3309,7 +3394,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3309
3394
|
url: z.ZodString;
|
|
3310
3395
|
title: z.ZodOptional<z.ZodString>;
|
|
3311
3396
|
description: z.ZodOptional<z.ZodString>;
|
|
3312
|
-
type: z.ZodDefault<z.
|
|
3397
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
3313
3398
|
}, "strip", z.ZodTypeAny, {
|
|
3314
3399
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
3315
3400
|
url: string;
|
|
@@ -3759,6 +3844,15 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3759
3844
|
}, {
|
|
3760
3845
|
type: "beat";
|
|
3761
3846
|
id?: string | undefined;
|
|
3847
|
+
}>, z.ZodObject<{
|
|
3848
|
+
type: z.ZodLiteral<"voice_over">;
|
|
3849
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
3850
|
+
}, "strict", z.ZodTypeAny, {
|
|
3851
|
+
type: "voice_over";
|
|
3852
|
+
startAt?: number | undefined;
|
|
3853
|
+
}, {
|
|
3854
|
+
type: "voice_over";
|
|
3855
|
+
startAt?: number | undefined;
|
|
3762
3856
|
}>]>>;
|
|
3763
3857
|
audio: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3764
3858
|
type: z.ZodLiteral<"audio">;
|
|
@@ -3841,6 +3935,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3841
3935
|
}>]>>;
|
|
3842
3936
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
3843
3937
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
3938
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
3844
3939
|
model: z.ZodOptional<z.ZodString>;
|
|
3845
3940
|
style: z.ZodOptional<z.ZodString>;
|
|
3846
3941
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -3915,6 +4010,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3915
4010
|
};
|
|
3916
4011
|
}>>>;
|
|
3917
4012
|
}, "strict", z.ZodTypeAny, {
|
|
4013
|
+
provider: "openai" | "google";
|
|
3918
4014
|
style?: string | undefined;
|
|
3919
4015
|
model?: string | undefined;
|
|
3920
4016
|
moderation?: string | undefined;
|
|
@@ -3935,6 +4031,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3935
4031
|
};
|
|
3936
4032
|
}> | undefined;
|
|
3937
4033
|
}, {
|
|
4034
|
+
provider?: "openai" | "google" | undefined;
|
|
3938
4035
|
style?: string | undefined;
|
|
3939
4036
|
model?: string | undefined;
|
|
3940
4037
|
moderation?: string | undefined;
|
|
@@ -3963,21 +4060,24 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3963
4060
|
padding?: number | undefined;
|
|
3964
4061
|
}>>;
|
|
3965
4062
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
3966
|
-
fillOption: z.ZodObject<{
|
|
4063
|
+
fillOption: z.ZodOptional<z.ZodObject<{
|
|
3967
4064
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
3968
4065
|
}, "strip", z.ZodTypeAny, {
|
|
3969
4066
|
style: "aspectFit" | "aspectFill";
|
|
3970
4067
|
}, {
|
|
3971
4068
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
3972
|
-
}
|
|
4069
|
+
}>>;
|
|
4070
|
+
speed: z.ZodOptional<z.ZodNumber>;
|
|
3973
4071
|
}, "strip", z.ZodTypeAny, {
|
|
3974
|
-
|
|
4072
|
+
speed?: number | undefined;
|
|
4073
|
+
fillOption?: {
|
|
3975
4074
|
style: "aspectFit" | "aspectFill";
|
|
3976
|
-
};
|
|
4075
|
+
} | undefined;
|
|
3977
4076
|
}, {
|
|
3978
|
-
|
|
4077
|
+
speed?: number | undefined;
|
|
4078
|
+
fillOption?: {
|
|
3979
4079
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
3980
|
-
};
|
|
4080
|
+
} | undefined;
|
|
3981
4081
|
}>>;
|
|
3982
4082
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
3983
4083
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -4125,6 +4225,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4125
4225
|
} | {
|
|
4126
4226
|
type: "beat";
|
|
4127
4227
|
id?: string | undefined;
|
|
4228
|
+
} | {
|
|
4229
|
+
type: "voice_over";
|
|
4230
|
+
startAt?: number | undefined;
|
|
4128
4231
|
} | {
|
|
4129
4232
|
type: "movie";
|
|
4130
4233
|
source: {
|
|
@@ -4164,6 +4267,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4164
4267
|
} | undefined;
|
|
4165
4268
|
description?: string | undefined;
|
|
4166
4269
|
imageParams?: {
|
|
4270
|
+
provider: "openai" | "google";
|
|
4167
4271
|
style?: string | undefined;
|
|
4168
4272
|
model?: string | undefined;
|
|
4169
4273
|
moderation?: string | undefined;
|
|
@@ -4188,9 +4292,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4188
4292
|
padding?: number | undefined;
|
|
4189
4293
|
} | undefined;
|
|
4190
4294
|
movieParams?: {
|
|
4191
|
-
|
|
4295
|
+
speed?: number | undefined;
|
|
4296
|
+
fillOption?: {
|
|
4192
4297
|
style: "aspectFit" | "aspectFill";
|
|
4193
|
-
};
|
|
4298
|
+
} | undefined;
|
|
4194
4299
|
} | undefined;
|
|
4195
4300
|
htmlImageParams?: {
|
|
4196
4301
|
model?: string | undefined;
|
|
@@ -4303,6 +4408,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4303
4408
|
} | {
|
|
4304
4409
|
type: "beat";
|
|
4305
4410
|
id?: string | undefined;
|
|
4411
|
+
} | {
|
|
4412
|
+
type: "voice_over";
|
|
4413
|
+
startAt?: number | undefined;
|
|
4306
4414
|
} | {
|
|
4307
4415
|
type: "movie";
|
|
4308
4416
|
source: {
|
|
@@ -4343,6 +4451,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4343
4451
|
speaker?: string | undefined;
|
|
4344
4452
|
description?: string | undefined;
|
|
4345
4453
|
imageParams?: {
|
|
4454
|
+
provider?: "openai" | "google" | undefined;
|
|
4346
4455
|
style?: string | undefined;
|
|
4347
4456
|
model?: string | undefined;
|
|
4348
4457
|
moderation?: string | undefined;
|
|
@@ -4367,9 +4476,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4367
4476
|
padding?: number | undefined;
|
|
4368
4477
|
} | undefined;
|
|
4369
4478
|
movieParams?: {
|
|
4370
|
-
|
|
4479
|
+
speed?: number | undefined;
|
|
4480
|
+
fillOption?: {
|
|
4371
4481
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
4372
|
-
};
|
|
4482
|
+
} | undefined;
|
|
4373
4483
|
} | undefined;
|
|
4374
4484
|
htmlImageParams?: {
|
|
4375
4485
|
model?: string | undefined;
|
|
@@ -4529,6 +4639,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4529
4639
|
} | {
|
|
4530
4640
|
type: "beat";
|
|
4531
4641
|
id?: string | undefined;
|
|
4642
|
+
} | {
|
|
4643
|
+
type: "voice_over";
|
|
4644
|
+
startAt?: number | undefined;
|
|
4532
4645
|
} | {
|
|
4533
4646
|
type: "movie";
|
|
4534
4647
|
source: {
|
|
@@ -4568,6 +4681,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4568
4681
|
} | undefined;
|
|
4569
4682
|
description?: string | undefined;
|
|
4570
4683
|
imageParams?: {
|
|
4684
|
+
provider: "openai" | "google";
|
|
4571
4685
|
style?: string | undefined;
|
|
4572
4686
|
model?: string | undefined;
|
|
4573
4687
|
moderation?: string | undefined;
|
|
@@ -4592,9 +4706,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4592
4706
|
padding?: number | undefined;
|
|
4593
4707
|
} | undefined;
|
|
4594
4708
|
movieParams?: {
|
|
4595
|
-
|
|
4709
|
+
speed?: number | undefined;
|
|
4710
|
+
fillOption?: {
|
|
4596
4711
|
style: "aspectFit" | "aspectFill";
|
|
4597
|
-
};
|
|
4712
|
+
} | undefined;
|
|
4598
4713
|
} | undefined;
|
|
4599
4714
|
htmlImageParams?: {
|
|
4600
4715
|
model?: string | undefined;
|
|
@@ -4642,7 +4757,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4642
4757
|
}> | undefined;
|
|
4643
4758
|
} | undefined;
|
|
4644
4759
|
movieParams?: {
|
|
4645
|
-
provider?: "
|
|
4760
|
+
provider?: "google" | "replicate" | undefined;
|
|
4646
4761
|
model?: string | undefined;
|
|
4647
4762
|
fillOption?: {
|
|
4648
4763
|
style: "aspectFit" | "aspectFill";
|
|
@@ -4768,6 +4883,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4768
4883
|
} | {
|
|
4769
4884
|
type: "beat";
|
|
4770
4885
|
id?: string | undefined;
|
|
4886
|
+
} | {
|
|
4887
|
+
type: "voice_over";
|
|
4888
|
+
startAt?: number | undefined;
|
|
4771
4889
|
} | {
|
|
4772
4890
|
type: "movie";
|
|
4773
4891
|
source: {
|
|
@@ -4808,6 +4926,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4808
4926
|
speaker?: string | undefined;
|
|
4809
4927
|
description?: string | undefined;
|
|
4810
4928
|
imageParams?: {
|
|
4929
|
+
provider?: "openai" | "google" | undefined;
|
|
4811
4930
|
style?: string | undefined;
|
|
4812
4931
|
model?: string | undefined;
|
|
4813
4932
|
moderation?: string | undefined;
|
|
@@ -4832,9 +4951,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4832
4951
|
padding?: number | undefined;
|
|
4833
4952
|
} | undefined;
|
|
4834
4953
|
movieParams?: {
|
|
4835
|
-
|
|
4954
|
+
speed?: number | undefined;
|
|
4955
|
+
fillOption?: {
|
|
4836
4956
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
4837
|
-
};
|
|
4957
|
+
} | undefined;
|
|
4838
4958
|
} | undefined;
|
|
4839
4959
|
htmlImageParams?: {
|
|
4840
4960
|
model?: string | undefined;
|
|
@@ -4904,7 +5024,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4904
5024
|
suppressSpeech?: boolean | undefined;
|
|
4905
5025
|
} | undefined;
|
|
4906
5026
|
movieParams?: {
|
|
4907
|
-
provider?: "
|
|
5027
|
+
provider?: "google" | "replicate" | undefined;
|
|
4908
5028
|
model?: string | undefined;
|
|
4909
5029
|
fillOption?: {
|
|
4910
5030
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -4953,20 +5073,32 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4953
5073
|
export declare const mulmoStudioBeatSchema: z.ZodObject<{
|
|
4954
5074
|
hash: z.ZodOptional<z.ZodString>;
|
|
4955
5075
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
5076
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
5077
|
+
audioDuration: z.ZodOptional<z.ZodNumber>;
|
|
5078
|
+
movieDuration: z.ZodOptional<z.ZodNumber>;
|
|
5079
|
+
silenceDuration: z.ZodOptional<z.ZodNumber>;
|
|
4956
5080
|
audioFile: z.ZodOptional<z.ZodString>;
|
|
4957
5081
|
imageFile: z.ZodOptional<z.ZodString>;
|
|
4958
5082
|
movieFile: z.ZodOptional<z.ZodString>;
|
|
4959
5083
|
captionFile: z.ZodOptional<z.ZodString>;
|
|
4960
5084
|
}, "strict", z.ZodTypeAny, {
|
|
4961
5085
|
duration?: number | undefined;
|
|
5086
|
+
startAt?: number | undefined;
|
|
4962
5087
|
hash?: string | undefined;
|
|
5088
|
+
audioDuration?: number | undefined;
|
|
5089
|
+
movieDuration?: number | undefined;
|
|
5090
|
+
silenceDuration?: number | undefined;
|
|
4963
5091
|
audioFile?: string | undefined;
|
|
4964
5092
|
imageFile?: string | undefined;
|
|
4965
5093
|
movieFile?: string | undefined;
|
|
4966
5094
|
captionFile?: string | undefined;
|
|
4967
5095
|
}, {
|
|
4968
5096
|
duration?: number | undefined;
|
|
5097
|
+
startAt?: number | undefined;
|
|
4969
5098
|
hash?: string | undefined;
|
|
5099
|
+
audioDuration?: number | undefined;
|
|
5100
|
+
movieDuration?: number | undefined;
|
|
5101
|
+
silenceDuration?: number | undefined;
|
|
4970
5102
|
audioFile?: string | undefined;
|
|
4971
5103
|
imageFile?: string | undefined;
|
|
4972
5104
|
movieFile?: string | undefined;
|
|
@@ -5144,7 +5276,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5144
5276
|
height: number;
|
|
5145
5277
|
}>>;
|
|
5146
5278
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
5147
|
-
provider: z.ZodDefault<z.
|
|
5279
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
5148
5280
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5149
5281
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5150
5282
|
voiceId: z.ZodString;
|
|
@@ -5158,7 +5290,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5158
5290
|
speed?: number | undefined;
|
|
5159
5291
|
instruction?: string | undefined;
|
|
5160
5292
|
}>>;
|
|
5161
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
5293
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
5162
5294
|
}, "strict", z.ZodTypeAny, {
|
|
5163
5295
|
voiceId: string;
|
|
5164
5296
|
displayName?: Record<string, string> | undefined;
|
|
@@ -5200,6 +5332,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5200
5332
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
5201
5333
|
}>>;
|
|
5202
5334
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
5335
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
5203
5336
|
model: z.ZodOptional<z.ZodString>;
|
|
5204
5337
|
style: z.ZodOptional<z.ZodString>;
|
|
5205
5338
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -5273,8 +5406,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5273
5406
|
kind: "path";
|
|
5274
5407
|
};
|
|
5275
5408
|
}>>>;
|
|
5276
|
-
} & {
|
|
5277
|
-
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
5278
5409
|
}, "strict", z.ZodTypeAny, {
|
|
5279
5410
|
provider: "openai" | "google";
|
|
5280
5411
|
style?: string | undefined;
|
|
@@ -5319,7 +5450,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5319
5450
|
}> | undefined;
|
|
5320
5451
|
}>>;
|
|
5321
5452
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
5322
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
5453
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
5323
5454
|
model: z.ZodOptional<z.ZodString>;
|
|
5324
5455
|
transition: z.ZodOptional<z.ZodObject<{
|
|
5325
5456
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -5339,7 +5470,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5339
5470
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
5340
5471
|
}>>;
|
|
5341
5472
|
}, "strict", z.ZodTypeAny, {
|
|
5342
|
-
provider?: "
|
|
5473
|
+
provider?: "google" | "replicate" | undefined;
|
|
5343
5474
|
model?: string | undefined;
|
|
5344
5475
|
fillOption?: {
|
|
5345
5476
|
style: "aspectFit" | "aspectFill";
|
|
@@ -5349,7 +5480,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5349
5480
|
duration: number;
|
|
5350
5481
|
} | undefined;
|
|
5351
5482
|
}, {
|
|
5352
|
-
provider?: "
|
|
5483
|
+
provider?: "google" | "replicate" | undefined;
|
|
5353
5484
|
model?: string | undefined;
|
|
5354
5485
|
fillOption?: {
|
|
5355
5486
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -5362,7 +5493,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5362
5493
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
5363
5494
|
model: z.ZodOptional<z.ZodString>;
|
|
5364
5495
|
} & {
|
|
5365
|
-
provider: z.ZodDefault<z.
|
|
5496
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
5366
5497
|
}, "strict", z.ZodTypeAny, {
|
|
5367
5498
|
provider: "openai" | "anthropic";
|
|
5368
5499
|
model?: string | undefined;
|
|
@@ -5482,7 +5613,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5482
5613
|
url: z.ZodString;
|
|
5483
5614
|
title: z.ZodOptional<z.ZodString>;
|
|
5484
5615
|
description: z.ZodOptional<z.ZodString>;
|
|
5485
|
-
type: z.ZodDefault<z.
|
|
5616
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
5486
5617
|
}, "strip", z.ZodTypeAny, {
|
|
5487
5618
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
5488
5619
|
url: string;
|
|
@@ -5932,6 +6063,15 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5932
6063
|
}, {
|
|
5933
6064
|
type: "beat";
|
|
5934
6065
|
id?: string | undefined;
|
|
6066
|
+
}>, z.ZodObject<{
|
|
6067
|
+
type: z.ZodLiteral<"voice_over">;
|
|
6068
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
6069
|
+
}, "strict", z.ZodTypeAny, {
|
|
6070
|
+
type: "voice_over";
|
|
6071
|
+
startAt?: number | undefined;
|
|
6072
|
+
}, {
|
|
6073
|
+
type: "voice_over";
|
|
6074
|
+
startAt?: number | undefined;
|
|
5935
6075
|
}>]>>;
|
|
5936
6076
|
audio: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5937
6077
|
type: z.ZodLiteral<"audio">;
|
|
@@ -6014,6 +6154,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6014
6154
|
}>]>>;
|
|
6015
6155
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
6016
6156
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
6157
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
6017
6158
|
model: z.ZodOptional<z.ZodString>;
|
|
6018
6159
|
style: z.ZodOptional<z.ZodString>;
|
|
6019
6160
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -6088,6 +6229,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6088
6229
|
};
|
|
6089
6230
|
}>>>;
|
|
6090
6231
|
}, "strict", z.ZodTypeAny, {
|
|
6232
|
+
provider: "openai" | "google";
|
|
6091
6233
|
style?: string | undefined;
|
|
6092
6234
|
model?: string | undefined;
|
|
6093
6235
|
moderation?: string | undefined;
|
|
@@ -6108,6 +6250,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6108
6250
|
};
|
|
6109
6251
|
}> | undefined;
|
|
6110
6252
|
}, {
|
|
6253
|
+
provider?: "openai" | "google" | undefined;
|
|
6111
6254
|
style?: string | undefined;
|
|
6112
6255
|
model?: string | undefined;
|
|
6113
6256
|
moderation?: string | undefined;
|
|
@@ -6136,21 +6279,24 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6136
6279
|
padding?: number | undefined;
|
|
6137
6280
|
}>>;
|
|
6138
6281
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
6139
|
-
fillOption: z.ZodObject<{
|
|
6282
|
+
fillOption: z.ZodOptional<z.ZodObject<{
|
|
6140
6283
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
6141
6284
|
}, "strip", z.ZodTypeAny, {
|
|
6142
6285
|
style: "aspectFit" | "aspectFill";
|
|
6143
6286
|
}, {
|
|
6144
6287
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
6145
|
-
}
|
|
6288
|
+
}>>;
|
|
6289
|
+
speed: z.ZodOptional<z.ZodNumber>;
|
|
6146
6290
|
}, "strip", z.ZodTypeAny, {
|
|
6147
|
-
|
|
6291
|
+
speed?: number | undefined;
|
|
6292
|
+
fillOption?: {
|
|
6148
6293
|
style: "aspectFit" | "aspectFill";
|
|
6149
|
-
};
|
|
6294
|
+
} | undefined;
|
|
6150
6295
|
}, {
|
|
6151
|
-
|
|
6296
|
+
speed?: number | undefined;
|
|
6297
|
+
fillOption?: {
|
|
6152
6298
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
6153
|
-
};
|
|
6299
|
+
} | undefined;
|
|
6154
6300
|
}>>;
|
|
6155
6301
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
6156
6302
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -6298,6 +6444,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6298
6444
|
} | {
|
|
6299
6445
|
type: "beat";
|
|
6300
6446
|
id?: string | undefined;
|
|
6447
|
+
} | {
|
|
6448
|
+
type: "voice_over";
|
|
6449
|
+
startAt?: number | undefined;
|
|
6301
6450
|
} | {
|
|
6302
6451
|
type: "movie";
|
|
6303
6452
|
source: {
|
|
@@ -6337,6 +6486,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6337
6486
|
} | undefined;
|
|
6338
6487
|
description?: string | undefined;
|
|
6339
6488
|
imageParams?: {
|
|
6489
|
+
provider: "openai" | "google";
|
|
6340
6490
|
style?: string | undefined;
|
|
6341
6491
|
model?: string | undefined;
|
|
6342
6492
|
moderation?: string | undefined;
|
|
@@ -6361,9 +6511,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6361
6511
|
padding?: number | undefined;
|
|
6362
6512
|
} | undefined;
|
|
6363
6513
|
movieParams?: {
|
|
6364
|
-
|
|
6514
|
+
speed?: number | undefined;
|
|
6515
|
+
fillOption?: {
|
|
6365
6516
|
style: "aspectFit" | "aspectFill";
|
|
6366
|
-
};
|
|
6517
|
+
} | undefined;
|
|
6367
6518
|
} | undefined;
|
|
6368
6519
|
htmlImageParams?: {
|
|
6369
6520
|
model?: string | undefined;
|
|
@@ -6476,6 +6627,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6476
6627
|
} | {
|
|
6477
6628
|
type: "beat";
|
|
6478
6629
|
id?: string | undefined;
|
|
6630
|
+
} | {
|
|
6631
|
+
type: "voice_over";
|
|
6632
|
+
startAt?: number | undefined;
|
|
6479
6633
|
} | {
|
|
6480
6634
|
type: "movie";
|
|
6481
6635
|
source: {
|
|
@@ -6516,6 +6670,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6516
6670
|
speaker?: string | undefined;
|
|
6517
6671
|
description?: string | undefined;
|
|
6518
6672
|
imageParams?: {
|
|
6673
|
+
provider?: "openai" | "google" | undefined;
|
|
6519
6674
|
style?: string | undefined;
|
|
6520
6675
|
model?: string | undefined;
|
|
6521
6676
|
moderation?: string | undefined;
|
|
@@ -6540,9 +6695,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6540
6695
|
padding?: number | undefined;
|
|
6541
6696
|
} | undefined;
|
|
6542
6697
|
movieParams?: {
|
|
6543
|
-
|
|
6698
|
+
speed?: number | undefined;
|
|
6699
|
+
fillOption?: {
|
|
6544
6700
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
6545
|
-
};
|
|
6701
|
+
} | undefined;
|
|
6546
6702
|
} | undefined;
|
|
6547
6703
|
htmlImageParams?: {
|
|
6548
6704
|
model?: string | undefined;
|
|
@@ -6702,6 +6858,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6702
6858
|
} | {
|
|
6703
6859
|
type: "beat";
|
|
6704
6860
|
id?: string | undefined;
|
|
6861
|
+
} | {
|
|
6862
|
+
type: "voice_over";
|
|
6863
|
+
startAt?: number | undefined;
|
|
6705
6864
|
} | {
|
|
6706
6865
|
type: "movie";
|
|
6707
6866
|
source: {
|
|
@@ -6741,6 +6900,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6741
6900
|
} | undefined;
|
|
6742
6901
|
description?: string | undefined;
|
|
6743
6902
|
imageParams?: {
|
|
6903
|
+
provider: "openai" | "google";
|
|
6744
6904
|
style?: string | undefined;
|
|
6745
6905
|
model?: string | undefined;
|
|
6746
6906
|
moderation?: string | undefined;
|
|
@@ -6765,9 +6925,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6765
6925
|
padding?: number | undefined;
|
|
6766
6926
|
} | undefined;
|
|
6767
6927
|
movieParams?: {
|
|
6768
|
-
|
|
6928
|
+
speed?: number | undefined;
|
|
6929
|
+
fillOption?: {
|
|
6769
6930
|
style: "aspectFit" | "aspectFill";
|
|
6770
|
-
};
|
|
6931
|
+
} | undefined;
|
|
6771
6932
|
} | undefined;
|
|
6772
6933
|
htmlImageParams?: {
|
|
6773
6934
|
model?: string | undefined;
|
|
@@ -6815,7 +6976,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6815
6976
|
}> | undefined;
|
|
6816
6977
|
} | undefined;
|
|
6817
6978
|
movieParams?: {
|
|
6818
|
-
provider?: "
|
|
6979
|
+
provider?: "google" | "replicate" | undefined;
|
|
6819
6980
|
model?: string | undefined;
|
|
6820
6981
|
fillOption?: {
|
|
6821
6982
|
style: "aspectFit" | "aspectFill";
|
|
@@ -6941,6 +7102,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6941
7102
|
} | {
|
|
6942
7103
|
type: "beat";
|
|
6943
7104
|
id?: string | undefined;
|
|
7105
|
+
} | {
|
|
7106
|
+
type: "voice_over";
|
|
7107
|
+
startAt?: number | undefined;
|
|
6944
7108
|
} | {
|
|
6945
7109
|
type: "movie";
|
|
6946
7110
|
source: {
|
|
@@ -6981,6 +7145,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6981
7145
|
speaker?: string | undefined;
|
|
6982
7146
|
description?: string | undefined;
|
|
6983
7147
|
imageParams?: {
|
|
7148
|
+
provider?: "openai" | "google" | undefined;
|
|
6984
7149
|
style?: string | undefined;
|
|
6985
7150
|
model?: string | undefined;
|
|
6986
7151
|
moderation?: string | undefined;
|
|
@@ -7005,9 +7170,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7005
7170
|
padding?: number | undefined;
|
|
7006
7171
|
} | undefined;
|
|
7007
7172
|
movieParams?: {
|
|
7008
|
-
|
|
7173
|
+
speed?: number | undefined;
|
|
7174
|
+
fillOption?: {
|
|
7009
7175
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
7010
|
-
};
|
|
7176
|
+
} | undefined;
|
|
7011
7177
|
} | undefined;
|
|
7012
7178
|
htmlImageParams?: {
|
|
7013
7179
|
model?: string | undefined;
|
|
@@ -7077,7 +7243,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7077
7243
|
suppressSpeech?: boolean | undefined;
|
|
7078
7244
|
} | undefined;
|
|
7079
7245
|
movieParams?: {
|
|
7080
|
-
provider?: "
|
|
7246
|
+
provider?: "google" | "replicate" | undefined;
|
|
7081
7247
|
model?: string | undefined;
|
|
7082
7248
|
fillOption?: {
|
|
7083
7249
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -7127,20 +7293,32 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7127
7293
|
beats: z.ZodArray<z.ZodObject<{
|
|
7128
7294
|
hash: z.ZodOptional<z.ZodString>;
|
|
7129
7295
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
7296
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
7297
|
+
audioDuration: z.ZodOptional<z.ZodNumber>;
|
|
7298
|
+
movieDuration: z.ZodOptional<z.ZodNumber>;
|
|
7299
|
+
silenceDuration: z.ZodOptional<z.ZodNumber>;
|
|
7130
7300
|
audioFile: z.ZodOptional<z.ZodString>;
|
|
7131
7301
|
imageFile: z.ZodOptional<z.ZodString>;
|
|
7132
7302
|
movieFile: z.ZodOptional<z.ZodString>;
|
|
7133
7303
|
captionFile: z.ZodOptional<z.ZodString>;
|
|
7134
7304
|
}, "strict", z.ZodTypeAny, {
|
|
7135
7305
|
duration?: number | undefined;
|
|
7306
|
+
startAt?: number | undefined;
|
|
7136
7307
|
hash?: string | undefined;
|
|
7308
|
+
audioDuration?: number | undefined;
|
|
7309
|
+
movieDuration?: number | undefined;
|
|
7310
|
+
silenceDuration?: number | undefined;
|
|
7137
7311
|
audioFile?: string | undefined;
|
|
7138
7312
|
imageFile?: string | undefined;
|
|
7139
7313
|
movieFile?: string | undefined;
|
|
7140
7314
|
captionFile?: string | undefined;
|
|
7141
7315
|
}, {
|
|
7142
7316
|
duration?: number | undefined;
|
|
7317
|
+
startAt?: number | undefined;
|
|
7143
7318
|
hash?: string | undefined;
|
|
7319
|
+
audioDuration?: number | undefined;
|
|
7320
|
+
movieDuration?: number | undefined;
|
|
7321
|
+
silenceDuration?: number | undefined;
|
|
7144
7322
|
audioFile?: string | undefined;
|
|
7145
7323
|
imageFile?: string | undefined;
|
|
7146
7324
|
movieFile?: string | undefined;
|
|
@@ -7149,7 +7327,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7149
7327
|
}, "strict", z.ZodTypeAny, {
|
|
7150
7328
|
beats: {
|
|
7151
7329
|
duration?: number | undefined;
|
|
7330
|
+
startAt?: number | undefined;
|
|
7152
7331
|
hash?: string | undefined;
|
|
7332
|
+
audioDuration?: number | undefined;
|
|
7333
|
+
movieDuration?: number | undefined;
|
|
7334
|
+
silenceDuration?: number | undefined;
|
|
7153
7335
|
audioFile?: string | undefined;
|
|
7154
7336
|
imageFile?: string | undefined;
|
|
7155
7337
|
movieFile?: string | undefined;
|
|
@@ -7291,6 +7473,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7291
7473
|
} | {
|
|
7292
7474
|
type: "beat";
|
|
7293
7475
|
id?: string | undefined;
|
|
7476
|
+
} | {
|
|
7477
|
+
type: "voice_over";
|
|
7478
|
+
startAt?: number | undefined;
|
|
7294
7479
|
} | {
|
|
7295
7480
|
type: "movie";
|
|
7296
7481
|
source: {
|
|
@@ -7330,6 +7515,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7330
7515
|
} | undefined;
|
|
7331
7516
|
description?: string | undefined;
|
|
7332
7517
|
imageParams?: {
|
|
7518
|
+
provider: "openai" | "google";
|
|
7333
7519
|
style?: string | undefined;
|
|
7334
7520
|
model?: string | undefined;
|
|
7335
7521
|
moderation?: string | undefined;
|
|
@@ -7354,9 +7540,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7354
7540
|
padding?: number | undefined;
|
|
7355
7541
|
} | undefined;
|
|
7356
7542
|
movieParams?: {
|
|
7357
|
-
|
|
7543
|
+
speed?: number | undefined;
|
|
7544
|
+
fillOption?: {
|
|
7358
7545
|
style: "aspectFit" | "aspectFill";
|
|
7359
|
-
};
|
|
7546
|
+
} | undefined;
|
|
7360
7547
|
} | undefined;
|
|
7361
7548
|
htmlImageParams?: {
|
|
7362
7549
|
model?: string | undefined;
|
|
@@ -7404,7 +7591,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7404
7591
|
}> | undefined;
|
|
7405
7592
|
} | undefined;
|
|
7406
7593
|
movieParams?: {
|
|
7407
|
-
provider?: "
|
|
7594
|
+
provider?: "google" | "replicate" | undefined;
|
|
7408
7595
|
model?: string | undefined;
|
|
7409
7596
|
fillOption?: {
|
|
7410
7597
|
style: "aspectFit" | "aspectFill";
|
|
@@ -7438,7 +7625,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7438
7625
|
}, {
|
|
7439
7626
|
beats: {
|
|
7440
7627
|
duration?: number | undefined;
|
|
7628
|
+
startAt?: number | undefined;
|
|
7441
7629
|
hash?: string | undefined;
|
|
7630
|
+
audioDuration?: number | undefined;
|
|
7631
|
+
movieDuration?: number | undefined;
|
|
7632
|
+
silenceDuration?: number | undefined;
|
|
7442
7633
|
audioFile?: string | undefined;
|
|
7443
7634
|
imageFile?: string | undefined;
|
|
7444
7635
|
movieFile?: string | undefined;
|
|
@@ -7541,6 +7732,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7541
7732
|
} | {
|
|
7542
7733
|
type: "beat";
|
|
7543
7734
|
id?: string | undefined;
|
|
7735
|
+
} | {
|
|
7736
|
+
type: "voice_over";
|
|
7737
|
+
startAt?: number | undefined;
|
|
7544
7738
|
} | {
|
|
7545
7739
|
type: "movie";
|
|
7546
7740
|
source: {
|
|
@@ -7581,6 +7775,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7581
7775
|
speaker?: string | undefined;
|
|
7582
7776
|
description?: string | undefined;
|
|
7583
7777
|
imageParams?: {
|
|
7778
|
+
provider?: "openai" | "google" | undefined;
|
|
7584
7779
|
style?: string | undefined;
|
|
7585
7780
|
model?: string | undefined;
|
|
7586
7781
|
moderation?: string | undefined;
|
|
@@ -7605,9 +7800,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7605
7800
|
padding?: number | undefined;
|
|
7606
7801
|
} | undefined;
|
|
7607
7802
|
movieParams?: {
|
|
7608
|
-
|
|
7803
|
+
speed?: number | undefined;
|
|
7804
|
+
fillOption?: {
|
|
7609
7805
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
7610
|
-
};
|
|
7806
|
+
} | undefined;
|
|
7611
7807
|
} | undefined;
|
|
7612
7808
|
htmlImageParams?: {
|
|
7613
7809
|
model?: string | undefined;
|
|
@@ -7677,7 +7873,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7677
7873
|
suppressSpeech?: boolean | undefined;
|
|
7678
7874
|
} | undefined;
|
|
7679
7875
|
movieParams?: {
|
|
7680
|
-
provider?: "
|
|
7876
|
+
provider?: "google" | "replicate" | undefined;
|
|
7681
7877
|
model?: string | undefined;
|
|
7682
7878
|
fillOption?: {
|
|
7683
7879
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -7752,7 +7948,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7752
7948
|
height: number;
|
|
7753
7949
|
}>>;
|
|
7754
7950
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
7755
|
-
provider: z.ZodDefault<z.
|
|
7951
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
7756
7952
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7757
7953
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
7758
7954
|
voiceId: z.ZodString;
|
|
@@ -7766,7 +7962,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7766
7962
|
speed?: number | undefined;
|
|
7767
7963
|
instruction?: string | undefined;
|
|
7768
7964
|
}>>;
|
|
7769
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
7965
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
7770
7966
|
}, "strict", z.ZodTypeAny, {
|
|
7771
7967
|
voiceId: string;
|
|
7772
7968
|
displayName?: Record<string, string> | undefined;
|
|
@@ -7808,6 +8004,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7808
8004
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
7809
8005
|
}>>;
|
|
7810
8006
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
8007
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
7811
8008
|
model: z.ZodOptional<z.ZodString>;
|
|
7812
8009
|
style: z.ZodOptional<z.ZodString>;
|
|
7813
8010
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -7881,8 +8078,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7881
8078
|
kind: "path";
|
|
7882
8079
|
};
|
|
7883
8080
|
}>>>;
|
|
7884
|
-
} & {
|
|
7885
|
-
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
7886
8081
|
}, "strict", z.ZodTypeAny, {
|
|
7887
8082
|
provider: "openai" | "google";
|
|
7888
8083
|
style?: string | undefined;
|
|
@@ -7927,7 +8122,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7927
8122
|
}> | undefined;
|
|
7928
8123
|
}>>;
|
|
7929
8124
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
7930
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
8125
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
7931
8126
|
model: z.ZodOptional<z.ZodString>;
|
|
7932
8127
|
transition: z.ZodOptional<z.ZodObject<{
|
|
7933
8128
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -7947,7 +8142,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7947
8142
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
7948
8143
|
}>>;
|
|
7949
8144
|
}, "strict", z.ZodTypeAny, {
|
|
7950
|
-
provider?: "
|
|
8145
|
+
provider?: "google" | "replicate" | undefined;
|
|
7951
8146
|
model?: string | undefined;
|
|
7952
8147
|
fillOption?: {
|
|
7953
8148
|
style: "aspectFit" | "aspectFill";
|
|
@@ -7957,7 +8152,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7957
8152
|
duration: number;
|
|
7958
8153
|
} | undefined;
|
|
7959
8154
|
}, {
|
|
7960
|
-
provider?: "
|
|
8155
|
+
provider?: "google" | "replicate" | undefined;
|
|
7961
8156
|
model?: string | undefined;
|
|
7962
8157
|
fillOption?: {
|
|
7963
8158
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -7970,7 +8165,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7970
8165
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
7971
8166
|
model: z.ZodOptional<z.ZodString>;
|
|
7972
8167
|
} & {
|
|
7973
|
-
provider: z.ZodDefault<z.
|
|
8168
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
7974
8169
|
}, "strict", z.ZodTypeAny, {
|
|
7975
8170
|
provider: "openai" | "anthropic";
|
|
7976
8171
|
model?: string | undefined;
|
|
@@ -8149,7 +8344,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8149
8344
|
}> | undefined;
|
|
8150
8345
|
} | undefined;
|
|
8151
8346
|
movieParams?: {
|
|
8152
|
-
provider?: "
|
|
8347
|
+
provider?: "google" | "replicate" | undefined;
|
|
8153
8348
|
model?: string | undefined;
|
|
8154
8349
|
fillOption?: {
|
|
8155
8350
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8220,7 +8415,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8220
8415
|
suppressSpeech?: boolean | undefined;
|
|
8221
8416
|
} | undefined;
|
|
8222
8417
|
movieParams?: {
|
|
8223
|
-
provider?: "
|
|
8418
|
+
provider?: "google" | "replicate" | undefined;
|
|
8224
8419
|
model?: string | undefined;
|
|
8225
8420
|
fillOption?: {
|
|
8226
8421
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8329,7 +8524,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8329
8524
|
}> | undefined;
|
|
8330
8525
|
} | undefined;
|
|
8331
8526
|
movieParams?: {
|
|
8332
|
-
provider?: "
|
|
8527
|
+
provider?: "google" | "replicate" | undefined;
|
|
8333
8528
|
model?: string | undefined;
|
|
8334
8529
|
fillOption?: {
|
|
8335
8530
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8406,7 +8601,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8406
8601
|
suppressSpeech?: boolean | undefined;
|
|
8407
8602
|
} | undefined;
|
|
8408
8603
|
movieParams?: {
|
|
8409
|
-
provider?: "
|
|
8604
|
+
provider?: "google" | "replicate" | undefined;
|
|
8410
8605
|
model?: string | undefined;
|
|
8411
8606
|
fillOption?: {
|
|
8412
8607
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8472,7 +8667,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8472
8667
|
height: number;
|
|
8473
8668
|
}>>;
|
|
8474
8669
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
8475
|
-
provider: z.ZodDefault<z.
|
|
8670
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>;
|
|
8476
8671
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8477
8672
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8478
8673
|
voiceId: z.ZodString;
|
|
@@ -8486,7 +8681,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8486
8681
|
speed?: number | undefined;
|
|
8487
8682
|
instruction?: string | undefined;
|
|
8488
8683
|
}>>;
|
|
8489
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
8684
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["openai", "nijivoice", "google", "elevenlabs"]>>>;
|
|
8490
8685
|
}, "strict", z.ZodTypeAny, {
|
|
8491
8686
|
voiceId: string;
|
|
8492
8687
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8528,6 +8723,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8528
8723
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
8529
8724
|
}>>;
|
|
8530
8725
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
8726
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "google"]>>;
|
|
8531
8727
|
model: z.ZodOptional<z.ZodString>;
|
|
8532
8728
|
style: z.ZodOptional<z.ZodString>;
|
|
8533
8729
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -8601,8 +8797,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8601
8797
|
kind: "path";
|
|
8602
8798
|
};
|
|
8603
8799
|
}>>>;
|
|
8604
|
-
} & {
|
|
8605
|
-
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
8606
8800
|
}, "strict", z.ZodTypeAny, {
|
|
8607
8801
|
provider: "openai" | "google";
|
|
8608
8802
|
style?: string | undefined;
|
|
@@ -8647,7 +8841,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8647
8841
|
}> | undefined;
|
|
8648
8842
|
}>>;
|
|
8649
8843
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
8650
|
-
provider: z.ZodOptional<z.ZodDefault<z.
|
|
8844
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<["google", "replicate"]>>>;
|
|
8651
8845
|
model: z.ZodOptional<z.ZodString>;
|
|
8652
8846
|
transition: z.ZodOptional<z.ZodObject<{
|
|
8653
8847
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -8667,7 +8861,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8667
8861
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
8668
8862
|
}>>;
|
|
8669
8863
|
}, "strict", z.ZodTypeAny, {
|
|
8670
|
-
provider?: "
|
|
8864
|
+
provider?: "google" | "replicate" | undefined;
|
|
8671
8865
|
model?: string | undefined;
|
|
8672
8866
|
fillOption?: {
|
|
8673
8867
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8677,7 +8871,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8677
8871
|
duration: number;
|
|
8678
8872
|
} | undefined;
|
|
8679
8873
|
}, {
|
|
8680
|
-
provider?: "
|
|
8874
|
+
provider?: "google" | "replicate" | undefined;
|
|
8681
8875
|
model?: string | undefined;
|
|
8682
8876
|
fillOption?: {
|
|
8683
8877
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8690,7 +8884,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8690
8884
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
8691
8885
|
model: z.ZodOptional<z.ZodString>;
|
|
8692
8886
|
} & {
|
|
8693
|
-
provider: z.ZodDefault<z.
|
|
8887
|
+
provider: z.ZodDefault<z.ZodEnum<["openai", "anthropic"]>>;
|
|
8694
8888
|
}, "strict", z.ZodTypeAny, {
|
|
8695
8889
|
provider: "openai" | "anthropic";
|
|
8696
8890
|
model?: string | undefined;
|
|
@@ -8869,7 +9063,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8869
9063
|
}> | undefined;
|
|
8870
9064
|
} | undefined;
|
|
8871
9065
|
movieParams?: {
|
|
8872
|
-
provider?: "
|
|
9066
|
+
provider?: "google" | "replicate" | undefined;
|
|
8873
9067
|
model?: string | undefined;
|
|
8874
9068
|
fillOption?: {
|
|
8875
9069
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8940,7 +9134,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8940
9134
|
suppressSpeech?: boolean | undefined;
|
|
8941
9135
|
} | undefined;
|
|
8942
9136
|
movieParams?: {
|
|
8943
|
-
provider?: "
|
|
9137
|
+
provider?: "google" | "replicate" | undefined;
|
|
8944
9138
|
model?: string | undefined;
|
|
8945
9139
|
fillOption?: {
|
|
8946
9140
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -9052,7 +9246,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9052
9246
|
}> | undefined;
|
|
9053
9247
|
} | undefined;
|
|
9054
9248
|
movieParams?: {
|
|
9055
|
-
provider?: "
|
|
9249
|
+
provider?: "google" | "replicate" | undefined;
|
|
9056
9250
|
model?: string | undefined;
|
|
9057
9251
|
fillOption?: {
|
|
9058
9252
|
style: "aspectFit" | "aspectFill";
|
|
@@ -9130,7 +9324,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9130
9324
|
suppressSpeech?: boolean | undefined;
|
|
9131
9325
|
} | undefined;
|
|
9132
9326
|
movieParams?: {
|
|
9133
|
-
provider?: "
|
|
9327
|
+
provider?: "google" | "replicate" | undefined;
|
|
9134
9328
|
model?: string | undefined;
|
|
9135
9329
|
fillOption?: {
|
|
9136
9330
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -9175,7 +9369,7 @@ export declare const mulmoStoryboardSceneSchema: z.ZodObject<{
|
|
|
9175
9369
|
url: z.ZodString;
|
|
9176
9370
|
title: z.ZodOptional<z.ZodString>;
|
|
9177
9371
|
description: z.ZodOptional<z.ZodString>;
|
|
9178
|
-
type: z.ZodDefault<z.
|
|
9372
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
9179
9373
|
}, "strip", z.ZodTypeAny, {
|
|
9180
9374
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
9181
9375
|
url: string;
|
|
@@ -9210,7 +9404,7 @@ export declare const mulmoStoryboardSchema: z.ZodObject<{
|
|
|
9210
9404
|
url: z.ZodString;
|
|
9211
9405
|
title: z.ZodOptional<z.ZodString>;
|
|
9212
9406
|
description: z.ZodOptional<z.ZodString>;
|
|
9213
|
-
type: z.ZodDefault<z.
|
|
9407
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
9214
9408
|
}, "strip", z.ZodTypeAny, {
|
|
9215
9409
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
9216
9410
|
url: string;
|
|
@@ -9228,7 +9422,7 @@ export declare const mulmoStoryboardSchema: z.ZodObject<{
|
|
|
9228
9422
|
url: z.ZodString;
|
|
9229
9423
|
title: z.ZodOptional<z.ZodString>;
|
|
9230
9424
|
description: z.ZodOptional<z.ZodString>;
|
|
9231
|
-
type: z.ZodDefault<z.
|
|
9425
|
+
type: z.ZodDefault<z.ZodEnum<["article", "paper", "image", "video", "audio"]>>;
|
|
9232
9426
|
}, "strip", z.ZodTypeAny, {
|
|
9233
9427
|
type: "image" | "audio" | "article" | "paper" | "video";
|
|
9234
9428
|
url: string;
|