mulmocast 0.0.28 → 0.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/README.md +15 -8
- package/assets/templates/ghibli_shorts.json +1 -1
- 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 +12 -16
- package/lib/actions/movie.d.ts +1 -1
- package/lib/actions/movie.js +61 -17
- 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 +227 -53
- package/lib/types/schema.js +30 -7
- package/lib/types/type.d.ts +3 -2
- package/lib/utils/context.d.ts +11 -2
- 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 +11 -2
- package/package.json +1 -1
package/lib/types/schema.d.ts
CHANGED
|
@@ -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.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
989
|
+
export declare const mulmoOpenAIImageModelSchema: z.ZodObject<{
|
|
990
|
+
provider: z.ZodLiteral<"openai">;
|
|
991
|
+
model: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"dall-e-3">, z.ZodLiteral<"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.ZodUnion<[z.ZodLiteral<"imagen-3.0-fast-generate-001">, z.ZodLiteral<"imagen-3.0-generate-002">, z.ZodLiteral<"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.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"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.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"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;
|
|
@@ -2351,7 +2419,6 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2351
2419
|
}>;
|
|
2352
2420
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
2353
2421
|
}>;
|
|
2354
|
-
export declare const text2ImageProviderSchema: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
2355
2422
|
export declare const text2HtmlImageProviderSchema: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"anthropic">]>>;
|
|
2356
2423
|
export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">, z.ZodLiteral<"replicate">]>>;
|
|
2357
2424
|
export declare const mulmoTransitionSchema: z.ZodObject<{
|
|
@@ -2483,6 +2550,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2483
2550
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
2484
2551
|
}>>;
|
|
2485
2552
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
2553
|
+
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
2486
2554
|
model: z.ZodOptional<z.ZodString>;
|
|
2487
2555
|
style: z.ZodOptional<z.ZodString>;
|
|
2488
2556
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -2556,8 +2624,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2556
2624
|
kind: "path";
|
|
2557
2625
|
};
|
|
2558
2626
|
}>>>;
|
|
2559
|
-
} & {
|
|
2560
|
-
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
2561
2627
|
}, "strict", z.ZodTypeAny, {
|
|
2562
2628
|
provider: "openai" | "google";
|
|
2563
2629
|
style?: string | undefined;
|
|
@@ -3027,6 +3093,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3027
3093
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
3028
3094
|
}>>;
|
|
3029
3095
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
3096
|
+
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
3030
3097
|
model: z.ZodOptional<z.ZodString>;
|
|
3031
3098
|
style: z.ZodOptional<z.ZodString>;
|
|
3032
3099
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -3100,8 +3167,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3100
3167
|
kind: "path";
|
|
3101
3168
|
};
|
|
3102
3169
|
}>>>;
|
|
3103
|
-
} & {
|
|
3104
|
-
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
3105
3170
|
}, "strict", z.ZodTypeAny, {
|
|
3106
3171
|
provider: "openai" | "google";
|
|
3107
3172
|
style?: string | undefined;
|
|
@@ -3759,6 +3824,15 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3759
3824
|
}, {
|
|
3760
3825
|
type: "beat";
|
|
3761
3826
|
id?: string | undefined;
|
|
3827
|
+
}>, z.ZodObject<{
|
|
3828
|
+
type: z.ZodLiteral<"voice_over">;
|
|
3829
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
3830
|
+
}, "strict", z.ZodTypeAny, {
|
|
3831
|
+
type: "voice_over";
|
|
3832
|
+
startAt?: number | undefined;
|
|
3833
|
+
}, {
|
|
3834
|
+
type: "voice_over";
|
|
3835
|
+
startAt?: number | undefined;
|
|
3762
3836
|
}>]>>;
|
|
3763
3837
|
audio: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3764
3838
|
type: z.ZodLiteral<"audio">;
|
|
@@ -3841,6 +3915,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3841
3915
|
}>]>>;
|
|
3842
3916
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
3843
3917
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
3918
|
+
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
3844
3919
|
model: z.ZodOptional<z.ZodString>;
|
|
3845
3920
|
style: z.ZodOptional<z.ZodString>;
|
|
3846
3921
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -3915,6 +3990,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3915
3990
|
};
|
|
3916
3991
|
}>>>;
|
|
3917
3992
|
}, "strict", z.ZodTypeAny, {
|
|
3993
|
+
provider: "openai" | "google";
|
|
3918
3994
|
style?: string | undefined;
|
|
3919
3995
|
model?: string | undefined;
|
|
3920
3996
|
moderation?: string | undefined;
|
|
@@ -3935,6 +4011,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3935
4011
|
};
|
|
3936
4012
|
}> | undefined;
|
|
3937
4013
|
}, {
|
|
4014
|
+
provider?: "openai" | "google" | undefined;
|
|
3938
4015
|
style?: string | undefined;
|
|
3939
4016
|
model?: string | undefined;
|
|
3940
4017
|
moderation?: string | undefined;
|
|
@@ -3963,21 +4040,24 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3963
4040
|
padding?: number | undefined;
|
|
3964
4041
|
}>>;
|
|
3965
4042
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
3966
|
-
fillOption: z.ZodObject<{
|
|
4043
|
+
fillOption: z.ZodOptional<z.ZodObject<{
|
|
3967
4044
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
3968
4045
|
}, "strip", z.ZodTypeAny, {
|
|
3969
4046
|
style: "aspectFit" | "aspectFill";
|
|
3970
4047
|
}, {
|
|
3971
4048
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
3972
|
-
}
|
|
4049
|
+
}>>;
|
|
4050
|
+
speed: z.ZodOptional<z.ZodNumber>;
|
|
3973
4051
|
}, "strip", z.ZodTypeAny, {
|
|
3974
|
-
|
|
4052
|
+
speed?: number | undefined;
|
|
4053
|
+
fillOption?: {
|
|
3975
4054
|
style: "aspectFit" | "aspectFill";
|
|
3976
|
-
};
|
|
4055
|
+
} | undefined;
|
|
3977
4056
|
}, {
|
|
3978
|
-
|
|
4057
|
+
speed?: number | undefined;
|
|
4058
|
+
fillOption?: {
|
|
3979
4059
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
3980
|
-
};
|
|
4060
|
+
} | undefined;
|
|
3981
4061
|
}>>;
|
|
3982
4062
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
3983
4063
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -4125,6 +4205,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4125
4205
|
} | {
|
|
4126
4206
|
type: "beat";
|
|
4127
4207
|
id?: string | undefined;
|
|
4208
|
+
} | {
|
|
4209
|
+
type: "voice_over";
|
|
4210
|
+
startAt?: number | undefined;
|
|
4128
4211
|
} | {
|
|
4129
4212
|
type: "movie";
|
|
4130
4213
|
source: {
|
|
@@ -4164,6 +4247,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4164
4247
|
} | undefined;
|
|
4165
4248
|
description?: string | undefined;
|
|
4166
4249
|
imageParams?: {
|
|
4250
|
+
provider: "openai" | "google";
|
|
4167
4251
|
style?: string | undefined;
|
|
4168
4252
|
model?: string | undefined;
|
|
4169
4253
|
moderation?: string | undefined;
|
|
@@ -4188,9 +4272,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4188
4272
|
padding?: number | undefined;
|
|
4189
4273
|
} | undefined;
|
|
4190
4274
|
movieParams?: {
|
|
4191
|
-
|
|
4275
|
+
speed?: number | undefined;
|
|
4276
|
+
fillOption?: {
|
|
4192
4277
|
style: "aspectFit" | "aspectFill";
|
|
4193
|
-
};
|
|
4278
|
+
} | undefined;
|
|
4194
4279
|
} | undefined;
|
|
4195
4280
|
htmlImageParams?: {
|
|
4196
4281
|
model?: string | undefined;
|
|
@@ -4303,6 +4388,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4303
4388
|
} | {
|
|
4304
4389
|
type: "beat";
|
|
4305
4390
|
id?: string | undefined;
|
|
4391
|
+
} | {
|
|
4392
|
+
type: "voice_over";
|
|
4393
|
+
startAt?: number | undefined;
|
|
4306
4394
|
} | {
|
|
4307
4395
|
type: "movie";
|
|
4308
4396
|
source: {
|
|
@@ -4343,6 +4431,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4343
4431
|
speaker?: string | undefined;
|
|
4344
4432
|
description?: string | undefined;
|
|
4345
4433
|
imageParams?: {
|
|
4434
|
+
provider?: "openai" | "google" | undefined;
|
|
4346
4435
|
style?: string | undefined;
|
|
4347
4436
|
model?: string | undefined;
|
|
4348
4437
|
moderation?: string | undefined;
|
|
@@ -4367,9 +4456,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4367
4456
|
padding?: number | undefined;
|
|
4368
4457
|
} | undefined;
|
|
4369
4458
|
movieParams?: {
|
|
4370
|
-
|
|
4459
|
+
speed?: number | undefined;
|
|
4460
|
+
fillOption?: {
|
|
4371
4461
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
4372
|
-
};
|
|
4462
|
+
} | undefined;
|
|
4373
4463
|
} | undefined;
|
|
4374
4464
|
htmlImageParams?: {
|
|
4375
4465
|
model?: string | undefined;
|
|
@@ -4529,6 +4619,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4529
4619
|
} | {
|
|
4530
4620
|
type: "beat";
|
|
4531
4621
|
id?: string | undefined;
|
|
4622
|
+
} | {
|
|
4623
|
+
type: "voice_over";
|
|
4624
|
+
startAt?: number | undefined;
|
|
4532
4625
|
} | {
|
|
4533
4626
|
type: "movie";
|
|
4534
4627
|
source: {
|
|
@@ -4568,6 +4661,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4568
4661
|
} | undefined;
|
|
4569
4662
|
description?: string | undefined;
|
|
4570
4663
|
imageParams?: {
|
|
4664
|
+
provider: "openai" | "google";
|
|
4571
4665
|
style?: string | undefined;
|
|
4572
4666
|
model?: string | undefined;
|
|
4573
4667
|
moderation?: string | undefined;
|
|
@@ -4592,9 +4686,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4592
4686
|
padding?: number | undefined;
|
|
4593
4687
|
} | undefined;
|
|
4594
4688
|
movieParams?: {
|
|
4595
|
-
|
|
4689
|
+
speed?: number | undefined;
|
|
4690
|
+
fillOption?: {
|
|
4596
4691
|
style: "aspectFit" | "aspectFill";
|
|
4597
|
-
};
|
|
4692
|
+
} | undefined;
|
|
4598
4693
|
} | undefined;
|
|
4599
4694
|
htmlImageParams?: {
|
|
4600
4695
|
model?: string | undefined;
|
|
@@ -4768,6 +4863,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4768
4863
|
} | {
|
|
4769
4864
|
type: "beat";
|
|
4770
4865
|
id?: string | undefined;
|
|
4866
|
+
} | {
|
|
4867
|
+
type: "voice_over";
|
|
4868
|
+
startAt?: number | undefined;
|
|
4771
4869
|
} | {
|
|
4772
4870
|
type: "movie";
|
|
4773
4871
|
source: {
|
|
@@ -4808,6 +4906,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4808
4906
|
speaker?: string | undefined;
|
|
4809
4907
|
description?: string | undefined;
|
|
4810
4908
|
imageParams?: {
|
|
4909
|
+
provider?: "openai" | "google" | undefined;
|
|
4811
4910
|
style?: string | undefined;
|
|
4812
4911
|
model?: string | undefined;
|
|
4813
4912
|
moderation?: string | undefined;
|
|
@@ -4832,9 +4931,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4832
4931
|
padding?: number | undefined;
|
|
4833
4932
|
} | undefined;
|
|
4834
4933
|
movieParams?: {
|
|
4835
|
-
|
|
4934
|
+
speed?: number | undefined;
|
|
4935
|
+
fillOption?: {
|
|
4836
4936
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
4837
|
-
};
|
|
4937
|
+
} | undefined;
|
|
4838
4938
|
} | undefined;
|
|
4839
4939
|
htmlImageParams?: {
|
|
4840
4940
|
model?: string | undefined;
|
|
@@ -4953,20 +5053,32 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4953
5053
|
export declare const mulmoStudioBeatSchema: z.ZodObject<{
|
|
4954
5054
|
hash: z.ZodOptional<z.ZodString>;
|
|
4955
5055
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
5056
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
5057
|
+
audioDuration: z.ZodOptional<z.ZodNumber>;
|
|
5058
|
+
movieDuration: z.ZodOptional<z.ZodNumber>;
|
|
5059
|
+
silenceDuration: z.ZodOptional<z.ZodNumber>;
|
|
4956
5060
|
audioFile: z.ZodOptional<z.ZodString>;
|
|
4957
5061
|
imageFile: z.ZodOptional<z.ZodString>;
|
|
4958
5062
|
movieFile: z.ZodOptional<z.ZodString>;
|
|
4959
5063
|
captionFile: z.ZodOptional<z.ZodString>;
|
|
4960
5064
|
}, "strict", z.ZodTypeAny, {
|
|
4961
5065
|
duration?: number | undefined;
|
|
5066
|
+
startAt?: number | undefined;
|
|
4962
5067
|
hash?: string | undefined;
|
|
5068
|
+
audioDuration?: number | undefined;
|
|
5069
|
+
movieDuration?: number | undefined;
|
|
5070
|
+
silenceDuration?: number | undefined;
|
|
4963
5071
|
audioFile?: string | undefined;
|
|
4964
5072
|
imageFile?: string | undefined;
|
|
4965
5073
|
movieFile?: string | undefined;
|
|
4966
5074
|
captionFile?: string | undefined;
|
|
4967
5075
|
}, {
|
|
4968
5076
|
duration?: number | undefined;
|
|
5077
|
+
startAt?: number | undefined;
|
|
4969
5078
|
hash?: string | undefined;
|
|
5079
|
+
audioDuration?: number | undefined;
|
|
5080
|
+
movieDuration?: number | undefined;
|
|
5081
|
+
silenceDuration?: number | undefined;
|
|
4970
5082
|
audioFile?: string | undefined;
|
|
4971
5083
|
imageFile?: string | undefined;
|
|
4972
5084
|
movieFile?: string | undefined;
|
|
@@ -5200,6 +5312,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5200
5312
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
5201
5313
|
}>>;
|
|
5202
5314
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
5315
|
+
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
5203
5316
|
model: z.ZodOptional<z.ZodString>;
|
|
5204
5317
|
style: z.ZodOptional<z.ZodString>;
|
|
5205
5318
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -5273,8 +5386,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5273
5386
|
kind: "path";
|
|
5274
5387
|
};
|
|
5275
5388
|
}>>>;
|
|
5276
|
-
} & {
|
|
5277
|
-
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
5278
5389
|
}, "strict", z.ZodTypeAny, {
|
|
5279
5390
|
provider: "openai" | "google";
|
|
5280
5391
|
style?: string | undefined;
|
|
@@ -5932,6 +6043,15 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5932
6043
|
}, {
|
|
5933
6044
|
type: "beat";
|
|
5934
6045
|
id?: string | undefined;
|
|
6046
|
+
}>, z.ZodObject<{
|
|
6047
|
+
type: z.ZodLiteral<"voice_over">;
|
|
6048
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
6049
|
+
}, "strict", z.ZodTypeAny, {
|
|
6050
|
+
type: "voice_over";
|
|
6051
|
+
startAt?: number | undefined;
|
|
6052
|
+
}, {
|
|
6053
|
+
type: "voice_over";
|
|
6054
|
+
startAt?: number | undefined;
|
|
5935
6055
|
}>]>>;
|
|
5936
6056
|
audio: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5937
6057
|
type: z.ZodLiteral<"audio">;
|
|
@@ -6014,6 +6134,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6014
6134
|
}>]>>;
|
|
6015
6135
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
6016
6136
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
6137
|
+
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
6017
6138
|
model: z.ZodOptional<z.ZodString>;
|
|
6018
6139
|
style: z.ZodOptional<z.ZodString>;
|
|
6019
6140
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -6088,6 +6209,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6088
6209
|
};
|
|
6089
6210
|
}>>>;
|
|
6090
6211
|
}, "strict", z.ZodTypeAny, {
|
|
6212
|
+
provider: "openai" | "google";
|
|
6091
6213
|
style?: string | undefined;
|
|
6092
6214
|
model?: string | undefined;
|
|
6093
6215
|
moderation?: string | undefined;
|
|
@@ -6108,6 +6230,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6108
6230
|
};
|
|
6109
6231
|
}> | undefined;
|
|
6110
6232
|
}, {
|
|
6233
|
+
provider?: "openai" | "google" | undefined;
|
|
6111
6234
|
style?: string | undefined;
|
|
6112
6235
|
model?: string | undefined;
|
|
6113
6236
|
moderation?: string | undefined;
|
|
@@ -6136,21 +6259,24 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6136
6259
|
padding?: number | undefined;
|
|
6137
6260
|
}>>;
|
|
6138
6261
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
6139
|
-
fillOption: z.ZodObject<{
|
|
6262
|
+
fillOption: z.ZodOptional<z.ZodObject<{
|
|
6140
6263
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
6141
6264
|
}, "strip", z.ZodTypeAny, {
|
|
6142
6265
|
style: "aspectFit" | "aspectFill";
|
|
6143
6266
|
}, {
|
|
6144
6267
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
6145
|
-
}
|
|
6268
|
+
}>>;
|
|
6269
|
+
speed: z.ZodOptional<z.ZodNumber>;
|
|
6146
6270
|
}, "strip", z.ZodTypeAny, {
|
|
6147
|
-
|
|
6271
|
+
speed?: number | undefined;
|
|
6272
|
+
fillOption?: {
|
|
6148
6273
|
style: "aspectFit" | "aspectFill";
|
|
6149
|
-
};
|
|
6274
|
+
} | undefined;
|
|
6150
6275
|
}, {
|
|
6151
|
-
|
|
6276
|
+
speed?: number | undefined;
|
|
6277
|
+
fillOption?: {
|
|
6152
6278
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
6153
|
-
};
|
|
6279
|
+
} | undefined;
|
|
6154
6280
|
}>>;
|
|
6155
6281
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
6156
6282
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -6298,6 +6424,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6298
6424
|
} | {
|
|
6299
6425
|
type: "beat";
|
|
6300
6426
|
id?: string | undefined;
|
|
6427
|
+
} | {
|
|
6428
|
+
type: "voice_over";
|
|
6429
|
+
startAt?: number | undefined;
|
|
6301
6430
|
} | {
|
|
6302
6431
|
type: "movie";
|
|
6303
6432
|
source: {
|
|
@@ -6337,6 +6466,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6337
6466
|
} | undefined;
|
|
6338
6467
|
description?: string | undefined;
|
|
6339
6468
|
imageParams?: {
|
|
6469
|
+
provider: "openai" | "google";
|
|
6340
6470
|
style?: string | undefined;
|
|
6341
6471
|
model?: string | undefined;
|
|
6342
6472
|
moderation?: string | undefined;
|
|
@@ -6361,9 +6491,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6361
6491
|
padding?: number | undefined;
|
|
6362
6492
|
} | undefined;
|
|
6363
6493
|
movieParams?: {
|
|
6364
|
-
|
|
6494
|
+
speed?: number | undefined;
|
|
6495
|
+
fillOption?: {
|
|
6365
6496
|
style: "aspectFit" | "aspectFill";
|
|
6366
|
-
};
|
|
6497
|
+
} | undefined;
|
|
6367
6498
|
} | undefined;
|
|
6368
6499
|
htmlImageParams?: {
|
|
6369
6500
|
model?: string | undefined;
|
|
@@ -6476,6 +6607,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6476
6607
|
} | {
|
|
6477
6608
|
type: "beat";
|
|
6478
6609
|
id?: string | undefined;
|
|
6610
|
+
} | {
|
|
6611
|
+
type: "voice_over";
|
|
6612
|
+
startAt?: number | undefined;
|
|
6479
6613
|
} | {
|
|
6480
6614
|
type: "movie";
|
|
6481
6615
|
source: {
|
|
@@ -6516,6 +6650,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6516
6650
|
speaker?: string | undefined;
|
|
6517
6651
|
description?: string | undefined;
|
|
6518
6652
|
imageParams?: {
|
|
6653
|
+
provider?: "openai" | "google" | undefined;
|
|
6519
6654
|
style?: string | undefined;
|
|
6520
6655
|
model?: string | undefined;
|
|
6521
6656
|
moderation?: string | undefined;
|
|
@@ -6540,9 +6675,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6540
6675
|
padding?: number | undefined;
|
|
6541
6676
|
} | undefined;
|
|
6542
6677
|
movieParams?: {
|
|
6543
|
-
|
|
6678
|
+
speed?: number | undefined;
|
|
6679
|
+
fillOption?: {
|
|
6544
6680
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
6545
|
-
};
|
|
6681
|
+
} | undefined;
|
|
6546
6682
|
} | undefined;
|
|
6547
6683
|
htmlImageParams?: {
|
|
6548
6684
|
model?: string | undefined;
|
|
@@ -6702,6 +6838,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6702
6838
|
} | {
|
|
6703
6839
|
type: "beat";
|
|
6704
6840
|
id?: string | undefined;
|
|
6841
|
+
} | {
|
|
6842
|
+
type: "voice_over";
|
|
6843
|
+
startAt?: number | undefined;
|
|
6705
6844
|
} | {
|
|
6706
6845
|
type: "movie";
|
|
6707
6846
|
source: {
|
|
@@ -6741,6 +6880,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6741
6880
|
} | undefined;
|
|
6742
6881
|
description?: string | undefined;
|
|
6743
6882
|
imageParams?: {
|
|
6883
|
+
provider: "openai" | "google";
|
|
6744
6884
|
style?: string | undefined;
|
|
6745
6885
|
model?: string | undefined;
|
|
6746
6886
|
moderation?: string | undefined;
|
|
@@ -6765,9 +6905,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6765
6905
|
padding?: number | undefined;
|
|
6766
6906
|
} | undefined;
|
|
6767
6907
|
movieParams?: {
|
|
6768
|
-
|
|
6908
|
+
speed?: number | undefined;
|
|
6909
|
+
fillOption?: {
|
|
6769
6910
|
style: "aspectFit" | "aspectFill";
|
|
6770
|
-
};
|
|
6911
|
+
} | undefined;
|
|
6771
6912
|
} | undefined;
|
|
6772
6913
|
htmlImageParams?: {
|
|
6773
6914
|
model?: string | undefined;
|
|
@@ -6941,6 +7082,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6941
7082
|
} | {
|
|
6942
7083
|
type: "beat";
|
|
6943
7084
|
id?: string | undefined;
|
|
7085
|
+
} | {
|
|
7086
|
+
type: "voice_over";
|
|
7087
|
+
startAt?: number | undefined;
|
|
6944
7088
|
} | {
|
|
6945
7089
|
type: "movie";
|
|
6946
7090
|
source: {
|
|
@@ -6981,6 +7125,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6981
7125
|
speaker?: string | undefined;
|
|
6982
7126
|
description?: string | undefined;
|
|
6983
7127
|
imageParams?: {
|
|
7128
|
+
provider?: "openai" | "google" | undefined;
|
|
6984
7129
|
style?: string | undefined;
|
|
6985
7130
|
model?: string | undefined;
|
|
6986
7131
|
moderation?: string | undefined;
|
|
@@ -7005,9 +7150,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7005
7150
|
padding?: number | undefined;
|
|
7006
7151
|
} | undefined;
|
|
7007
7152
|
movieParams?: {
|
|
7008
|
-
|
|
7153
|
+
speed?: number | undefined;
|
|
7154
|
+
fillOption?: {
|
|
7009
7155
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
7010
|
-
};
|
|
7156
|
+
} | undefined;
|
|
7011
7157
|
} | undefined;
|
|
7012
7158
|
htmlImageParams?: {
|
|
7013
7159
|
model?: string | undefined;
|
|
@@ -7127,20 +7273,32 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7127
7273
|
beats: z.ZodArray<z.ZodObject<{
|
|
7128
7274
|
hash: z.ZodOptional<z.ZodString>;
|
|
7129
7275
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
7276
|
+
startAt: z.ZodOptional<z.ZodNumber>;
|
|
7277
|
+
audioDuration: z.ZodOptional<z.ZodNumber>;
|
|
7278
|
+
movieDuration: z.ZodOptional<z.ZodNumber>;
|
|
7279
|
+
silenceDuration: z.ZodOptional<z.ZodNumber>;
|
|
7130
7280
|
audioFile: z.ZodOptional<z.ZodString>;
|
|
7131
7281
|
imageFile: z.ZodOptional<z.ZodString>;
|
|
7132
7282
|
movieFile: z.ZodOptional<z.ZodString>;
|
|
7133
7283
|
captionFile: z.ZodOptional<z.ZodString>;
|
|
7134
7284
|
}, "strict", z.ZodTypeAny, {
|
|
7135
7285
|
duration?: number | undefined;
|
|
7286
|
+
startAt?: number | undefined;
|
|
7136
7287
|
hash?: string | undefined;
|
|
7288
|
+
audioDuration?: number | undefined;
|
|
7289
|
+
movieDuration?: number | undefined;
|
|
7290
|
+
silenceDuration?: number | undefined;
|
|
7137
7291
|
audioFile?: string | undefined;
|
|
7138
7292
|
imageFile?: string | undefined;
|
|
7139
7293
|
movieFile?: string | undefined;
|
|
7140
7294
|
captionFile?: string | undefined;
|
|
7141
7295
|
}, {
|
|
7142
7296
|
duration?: number | undefined;
|
|
7297
|
+
startAt?: number | undefined;
|
|
7143
7298
|
hash?: string | undefined;
|
|
7299
|
+
audioDuration?: number | undefined;
|
|
7300
|
+
movieDuration?: number | undefined;
|
|
7301
|
+
silenceDuration?: number | undefined;
|
|
7144
7302
|
audioFile?: string | undefined;
|
|
7145
7303
|
imageFile?: string | undefined;
|
|
7146
7304
|
movieFile?: string | undefined;
|
|
@@ -7149,7 +7307,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7149
7307
|
}, "strict", z.ZodTypeAny, {
|
|
7150
7308
|
beats: {
|
|
7151
7309
|
duration?: number | undefined;
|
|
7310
|
+
startAt?: number | undefined;
|
|
7152
7311
|
hash?: string | undefined;
|
|
7312
|
+
audioDuration?: number | undefined;
|
|
7313
|
+
movieDuration?: number | undefined;
|
|
7314
|
+
silenceDuration?: number | undefined;
|
|
7153
7315
|
audioFile?: string | undefined;
|
|
7154
7316
|
imageFile?: string | undefined;
|
|
7155
7317
|
movieFile?: string | undefined;
|
|
@@ -7291,6 +7453,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7291
7453
|
} | {
|
|
7292
7454
|
type: "beat";
|
|
7293
7455
|
id?: string | undefined;
|
|
7456
|
+
} | {
|
|
7457
|
+
type: "voice_over";
|
|
7458
|
+
startAt?: number | undefined;
|
|
7294
7459
|
} | {
|
|
7295
7460
|
type: "movie";
|
|
7296
7461
|
source: {
|
|
@@ -7330,6 +7495,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7330
7495
|
} | undefined;
|
|
7331
7496
|
description?: string | undefined;
|
|
7332
7497
|
imageParams?: {
|
|
7498
|
+
provider: "openai" | "google";
|
|
7333
7499
|
style?: string | undefined;
|
|
7334
7500
|
model?: string | undefined;
|
|
7335
7501
|
moderation?: string | undefined;
|
|
@@ -7354,9 +7520,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7354
7520
|
padding?: number | undefined;
|
|
7355
7521
|
} | undefined;
|
|
7356
7522
|
movieParams?: {
|
|
7357
|
-
|
|
7523
|
+
speed?: number | undefined;
|
|
7524
|
+
fillOption?: {
|
|
7358
7525
|
style: "aspectFit" | "aspectFill";
|
|
7359
|
-
};
|
|
7526
|
+
} | undefined;
|
|
7360
7527
|
} | undefined;
|
|
7361
7528
|
htmlImageParams?: {
|
|
7362
7529
|
model?: string | undefined;
|
|
@@ -7438,7 +7605,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7438
7605
|
}, {
|
|
7439
7606
|
beats: {
|
|
7440
7607
|
duration?: number | undefined;
|
|
7608
|
+
startAt?: number | undefined;
|
|
7441
7609
|
hash?: string | undefined;
|
|
7610
|
+
audioDuration?: number | undefined;
|
|
7611
|
+
movieDuration?: number | undefined;
|
|
7612
|
+
silenceDuration?: number | undefined;
|
|
7442
7613
|
audioFile?: string | undefined;
|
|
7443
7614
|
imageFile?: string | undefined;
|
|
7444
7615
|
movieFile?: string | undefined;
|
|
@@ -7541,6 +7712,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7541
7712
|
} | {
|
|
7542
7713
|
type: "beat";
|
|
7543
7714
|
id?: string | undefined;
|
|
7715
|
+
} | {
|
|
7716
|
+
type: "voice_over";
|
|
7717
|
+
startAt?: number | undefined;
|
|
7544
7718
|
} | {
|
|
7545
7719
|
type: "movie";
|
|
7546
7720
|
source: {
|
|
@@ -7581,6 +7755,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7581
7755
|
speaker?: string | undefined;
|
|
7582
7756
|
description?: string | undefined;
|
|
7583
7757
|
imageParams?: {
|
|
7758
|
+
provider?: "openai" | "google" | undefined;
|
|
7584
7759
|
style?: string | undefined;
|
|
7585
7760
|
model?: string | undefined;
|
|
7586
7761
|
moderation?: string | undefined;
|
|
@@ -7605,9 +7780,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7605
7780
|
padding?: number | undefined;
|
|
7606
7781
|
} | undefined;
|
|
7607
7782
|
movieParams?: {
|
|
7608
|
-
|
|
7783
|
+
speed?: number | undefined;
|
|
7784
|
+
fillOption?: {
|
|
7609
7785
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
7610
|
-
};
|
|
7786
|
+
} | undefined;
|
|
7611
7787
|
} | undefined;
|
|
7612
7788
|
htmlImageParams?: {
|
|
7613
7789
|
model?: string | undefined;
|
|
@@ -7808,6 +7984,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7808
7984
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
7809
7985
|
}>>;
|
|
7810
7986
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
7987
|
+
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
7811
7988
|
model: z.ZodOptional<z.ZodString>;
|
|
7812
7989
|
style: z.ZodOptional<z.ZodString>;
|
|
7813
7990
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -7881,8 +8058,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
7881
8058
|
kind: "path";
|
|
7882
8059
|
};
|
|
7883
8060
|
}>>>;
|
|
7884
|
-
} & {
|
|
7885
|
-
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
7886
8061
|
}, "strict", z.ZodTypeAny, {
|
|
7887
8062
|
provider: "openai" | "google";
|
|
7888
8063
|
style?: string | undefined;
|
|
@@ -8528,6 +8703,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8528
8703
|
provider?: "openai" | "nijivoice" | "google" | "elevenlabs" | undefined;
|
|
8529
8704
|
}>>;
|
|
8530
8705
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
8706
|
+
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
8531
8707
|
model: z.ZodOptional<z.ZodString>;
|
|
8532
8708
|
style: z.ZodOptional<z.ZodString>;
|
|
8533
8709
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -8601,8 +8777,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8601
8777
|
kind: "path";
|
|
8602
8778
|
};
|
|
8603
8779
|
}>>>;
|
|
8604
|
-
} & {
|
|
8605
|
-
provider: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"openai">, z.ZodLiteral<"google">]>>;
|
|
8606
8780
|
}, "strict", z.ZodTypeAny, {
|
|
8607
8781
|
provider: "openai" | "google";
|
|
8608
8782
|
style?: string | undefined;
|