mulmocast 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/actions/audio.js +13 -18
- package/lib/actions/image_agents.d.ts +30 -6
- package/lib/actions/image_agents.js +5 -2
- package/lib/actions/image_references.js +2 -1
- package/lib/actions/images.d.ts +9 -1
- package/lib/actions/images.js +38 -13
- package/lib/actions/movie.js +3 -2
- package/lib/agents/add_bgm_agent.js +1 -1
- package/lib/agents/combine_audio_files_agent.js +10 -7
- package/lib/agents/image_google_agent.js +2 -2
- package/lib/agents/image_openai_agent.js +2 -2
- package/lib/agents/movie_replicate_agent.js +1 -1
- package/lib/agents/tts_elevenlabs_agent.d.ts +2 -1
- package/lib/agents/tts_elevenlabs_agent.js +4 -3
- package/lib/agents/tts_google_agent.d.ts +2 -9
- package/lib/agents/tts_nijivoice_agent.d.ts +2 -1
- package/lib/agents/tts_nijivoice_agent.js +3 -3
- package/lib/agents/tts_openai_agent.d.ts +2 -13
- package/lib/agents/tts_openai_agent.js +4 -3
- package/lib/index.browser.d.ts +1 -0
- package/lib/index.browser.js +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -0
- package/lib/methods/mulmo_presentation_style.d.ts +2 -1
- package/lib/methods/mulmo_presentation_style.js +21 -17
- package/lib/types/agent.d.ts +29 -2
- package/lib/types/agent.js +0 -1
- package/lib/types/schema.d.ts +596 -485
- package/lib/types/schema.js +15 -11
- package/lib/utils/const.d.ts +0 -1
- package/lib/utils/const.js +0 -1
- package/lib/utils/context.d.ts +36 -30
- package/lib/utils/ffmpeg_utils.d.ts +4 -1
- package/lib/utils/ffmpeg_utils.js +2 -1
- package/lib/utils/preprocess.d.ts +28 -24
- package/lib/utils/provider2agent.d.ts +76 -0
- package/lib/utils/provider2agent.js +87 -0
- package/lib/utils/utils.d.ts +6 -11
- package/lib/utils/utils.js +5 -26
- package/package.json +2 -2
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.ZodEnum<[
|
|
51
|
+
export declare const text2SpeechProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
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,8 @@ 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.ZodEnum<[
|
|
65
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
66
|
+
model: z.ZodOptional<z.ZodString>;
|
|
66
67
|
}, "strict", z.ZodTypeAny, {
|
|
67
68
|
voiceId: string;
|
|
68
69
|
displayName?: Record<string, string> | undefined;
|
|
@@ -70,7 +71,8 @@ export declare const speakerDataSchema: z.ZodObject<{
|
|
|
70
71
|
speed?: number | undefined;
|
|
71
72
|
instruction?: string | undefined;
|
|
72
73
|
} | undefined;
|
|
73
|
-
provider?:
|
|
74
|
+
provider?: string | undefined;
|
|
75
|
+
model?: string | undefined;
|
|
74
76
|
}, {
|
|
75
77
|
voiceId: string;
|
|
76
78
|
displayName?: Record<string, string> | undefined;
|
|
@@ -78,7 +80,8 @@ export declare const speakerDataSchema: z.ZodObject<{
|
|
|
78
80
|
speed?: number | undefined;
|
|
79
81
|
instruction?: string | undefined;
|
|
80
82
|
} | undefined;
|
|
81
|
-
provider?:
|
|
83
|
+
provider?: string | undefined;
|
|
84
|
+
model?: string | undefined;
|
|
82
85
|
}>;
|
|
83
86
|
export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
84
87
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
@@ -93,7 +96,8 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
93
96
|
speed?: number | undefined;
|
|
94
97
|
instruction?: string | undefined;
|
|
95
98
|
}>>;
|
|
96
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
99
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
100
|
+
model: z.ZodOptional<z.ZodString>;
|
|
97
101
|
}, "strict", z.ZodTypeAny, {
|
|
98
102
|
voiceId: string;
|
|
99
103
|
displayName?: Record<string, string> | undefined;
|
|
@@ -101,7 +105,8 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
101
105
|
speed?: number | undefined;
|
|
102
106
|
instruction?: string | undefined;
|
|
103
107
|
} | undefined;
|
|
104
|
-
provider?:
|
|
108
|
+
provider?: string | undefined;
|
|
109
|
+
model?: string | undefined;
|
|
105
110
|
}, {
|
|
106
111
|
voiceId: string;
|
|
107
112
|
displayName?: Record<string, string> | undefined;
|
|
@@ -109,7 +114,8 @@ export declare const speakerDictionarySchema: z.ZodRecord<z.ZodString, z.ZodObje
|
|
|
109
114
|
speed?: number | undefined;
|
|
110
115
|
instruction?: string | undefined;
|
|
111
116
|
} | undefined;
|
|
112
|
-
provider?:
|
|
117
|
+
provider?: string | undefined;
|
|
118
|
+
model?: string | undefined;
|
|
113
119
|
}>>;
|
|
114
120
|
export declare const mediaSourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
115
121
|
kind: z.ZodLiteral<"url">;
|
|
@@ -651,8 +657,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
651
657
|
path: string;
|
|
652
658
|
kind: "path";
|
|
653
659
|
}>]>;
|
|
654
|
-
} & {
|
|
655
|
-
mixAudio: z.ZodDefault<z.ZodNumber>;
|
|
656
660
|
}, "strict", z.ZodTypeAny, {
|
|
657
661
|
type: "movie";
|
|
658
662
|
source: {
|
|
@@ -668,7 +672,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
668
672
|
path: string;
|
|
669
673
|
kind: "path";
|
|
670
674
|
};
|
|
671
|
-
mixAudio: number;
|
|
672
675
|
}, {
|
|
673
676
|
type: "movie";
|
|
674
677
|
source: {
|
|
@@ -684,7 +687,6 @@ export declare const mulmoImageAssetSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
684
687
|
path: string;
|
|
685
688
|
kind: "path";
|
|
686
689
|
};
|
|
687
|
-
mixAudio?: number | undefined;
|
|
688
690
|
}>, z.ZodObject<{
|
|
689
691
|
type: z.ZodLiteral<"textSlide">;
|
|
690
692
|
slide: z.ZodObject<{
|
|
@@ -1004,29 +1006,29 @@ export declare const mulmoFillOptionSchema: z.ZodObject<{
|
|
|
1004
1006
|
}, {
|
|
1005
1007
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
1006
1008
|
}>;
|
|
1007
|
-
export declare const text2ImageProviderSchema: z.ZodDefault<z.ZodEnum<[
|
|
1009
|
+
export declare const text2ImageProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
1008
1010
|
export declare const mulmoOpenAIImageModelSchema: z.ZodObject<{
|
|
1009
1011
|
provider: z.ZodLiteral<"openai">;
|
|
1010
|
-
model: z.ZodOptional<z.ZodEnum<[
|
|
1012
|
+
model: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
|
|
1011
1013
|
}, "strict", z.ZodTypeAny, {
|
|
1012
1014
|
provider: "openai";
|
|
1013
|
-
model?:
|
|
1015
|
+
model?: string | undefined;
|
|
1014
1016
|
}, {
|
|
1015
1017
|
provider: "openai";
|
|
1016
|
-
model?:
|
|
1018
|
+
model?: string | undefined;
|
|
1017
1019
|
}>;
|
|
1018
1020
|
export declare const mulmoGoogleImageModelSchema: z.ZodObject<{
|
|
1019
1021
|
provider: z.ZodLiteral<"google">;
|
|
1020
|
-
model: z.ZodOptional<z.ZodEnum<[
|
|
1022
|
+
model: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
|
|
1021
1023
|
}, "strict", z.ZodTypeAny, {
|
|
1022
1024
|
provider: "google";
|
|
1023
|
-
model?:
|
|
1025
|
+
model?: string | undefined;
|
|
1024
1026
|
}, {
|
|
1025
1027
|
provider: "google";
|
|
1026
|
-
model?:
|
|
1028
|
+
model?: string | undefined;
|
|
1027
1029
|
}>;
|
|
1028
1030
|
export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
1029
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
1031
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
1030
1032
|
model: z.ZodOptional<z.ZodString>;
|
|
1031
1033
|
style: z.ZodOptional<z.ZodString>;
|
|
1032
1034
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -1110,9 +1112,9 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1110
1112
|
prompt: string;
|
|
1111
1113
|
}>]>>>;
|
|
1112
1114
|
}, "strict", z.ZodTypeAny, {
|
|
1113
|
-
provider:
|
|
1114
|
-
style?: string | undefined;
|
|
1115
|
+
provider: string;
|
|
1115
1116
|
model?: string | undefined;
|
|
1117
|
+
style?: string | undefined;
|
|
1116
1118
|
moderation?: string | undefined;
|
|
1117
1119
|
images?: Record<string, {
|
|
1118
1120
|
type: "image";
|
|
@@ -1134,9 +1136,9 @@ export declare const mulmoImageParamsSchema: z.ZodObject<{
|
|
|
1134
1136
|
prompt: string;
|
|
1135
1137
|
}> | undefined;
|
|
1136
1138
|
}, {
|
|
1137
|
-
provider?:
|
|
1138
|
-
style?: string | undefined;
|
|
1139
|
+
provider?: string | undefined;
|
|
1139
1140
|
model?: string | undefined;
|
|
1141
|
+
style?: string | undefined;
|
|
1140
1142
|
moderation?: string | undefined;
|
|
1141
1143
|
images?: Record<string, {
|
|
1142
1144
|
type: "image";
|
|
@@ -1167,10 +1169,13 @@ export declare const textSlideParamsSchema: z.ZodObject<{
|
|
|
1167
1169
|
}>;
|
|
1168
1170
|
export declare const beatAudioParamsSchema: z.ZodObject<{
|
|
1169
1171
|
padding: z.ZodOptional<z.ZodNumber>;
|
|
1172
|
+
movieVolume: z.ZodDefault<z.ZodNumber>;
|
|
1170
1173
|
}, "strict", z.ZodTypeAny, {
|
|
1174
|
+
movieVolume: number;
|
|
1171
1175
|
padding?: number | undefined;
|
|
1172
1176
|
}, {
|
|
1173
1177
|
padding?: number | undefined;
|
|
1178
|
+
movieVolume?: number | undefined;
|
|
1174
1179
|
}>;
|
|
1175
1180
|
export declare const mulmoHtmlImageParamsSchema: z.ZodObject<{
|
|
1176
1181
|
model: z.ZodOptional<z.ZodString>;
|
|
@@ -1552,8 +1557,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1552
1557
|
path: string;
|
|
1553
1558
|
kind: "path";
|
|
1554
1559
|
}>]>;
|
|
1555
|
-
} & {
|
|
1556
|
-
mixAudio: z.ZodDefault<z.ZodNumber>;
|
|
1557
1560
|
}, "strict", z.ZodTypeAny, {
|
|
1558
1561
|
type: "movie";
|
|
1559
1562
|
source: {
|
|
@@ -1569,7 +1572,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1569
1572
|
path: string;
|
|
1570
1573
|
kind: "path";
|
|
1571
1574
|
};
|
|
1572
|
-
mixAudio: number;
|
|
1573
1575
|
}, {
|
|
1574
1576
|
type: "movie";
|
|
1575
1577
|
source: {
|
|
@@ -1585,7 +1587,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1585
1587
|
path: string;
|
|
1586
1588
|
kind: "path";
|
|
1587
1589
|
};
|
|
1588
|
-
mixAudio?: number | undefined;
|
|
1589
1590
|
}>, z.ZodObject<{
|
|
1590
1591
|
type: z.ZodLiteral<"textSlide">;
|
|
1591
1592
|
slide: z.ZodObject<{
|
|
@@ -1811,7 +1812,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1811
1812
|
}>]>>;
|
|
1812
1813
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
1813
1814
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
1814
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
1815
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
1815
1816
|
model: z.ZodOptional<z.ZodString>;
|
|
1816
1817
|
style: z.ZodOptional<z.ZodString>;
|
|
1817
1818
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -1895,9 +1896,9 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1895
1896
|
prompt: string;
|
|
1896
1897
|
}>]>>>;
|
|
1897
1898
|
}, "strict", z.ZodTypeAny, {
|
|
1898
|
-
provider:
|
|
1899
|
-
style?: string | undefined;
|
|
1899
|
+
provider: string;
|
|
1900
1900
|
model?: string | undefined;
|
|
1901
|
+
style?: string | undefined;
|
|
1901
1902
|
moderation?: string | undefined;
|
|
1902
1903
|
images?: Record<string, {
|
|
1903
1904
|
type: "image";
|
|
@@ -1919,9 +1920,9 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1919
1920
|
prompt: string;
|
|
1920
1921
|
}> | undefined;
|
|
1921
1922
|
}, {
|
|
1922
|
-
provider?:
|
|
1923
|
-
style?: string | undefined;
|
|
1923
|
+
provider?: string | undefined;
|
|
1924
1924
|
model?: string | undefined;
|
|
1925
|
+
style?: string | undefined;
|
|
1925
1926
|
moderation?: string | undefined;
|
|
1926
1927
|
images?: Record<string, {
|
|
1927
1928
|
type: "image";
|
|
@@ -1945,12 +1946,16 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1945
1946
|
}>>;
|
|
1946
1947
|
audioParams: z.ZodOptional<z.ZodObject<{
|
|
1947
1948
|
padding: z.ZodOptional<z.ZodNumber>;
|
|
1949
|
+
movieVolume: z.ZodDefault<z.ZodNumber>;
|
|
1948
1950
|
}, "strict", z.ZodTypeAny, {
|
|
1951
|
+
movieVolume: number;
|
|
1949
1952
|
padding?: number | undefined;
|
|
1950
1953
|
}, {
|
|
1951
1954
|
padding?: number | undefined;
|
|
1955
|
+
movieVolume?: number | undefined;
|
|
1952
1956
|
}>>;
|
|
1953
1957
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
1958
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1954
1959
|
fillOption: z.ZodOptional<z.ZodObject<{
|
|
1955
1960
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
1956
1961
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1961,11 +1966,13 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1961
1966
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
1962
1967
|
}, "strip", z.ZodTypeAny, {
|
|
1963
1968
|
speed?: number | undefined;
|
|
1969
|
+
model?: string | undefined;
|
|
1964
1970
|
fillOption?: {
|
|
1965
1971
|
style: "aspectFit" | "aspectFill";
|
|
1966
1972
|
} | undefined;
|
|
1967
1973
|
}, {
|
|
1968
1974
|
speed?: number | undefined;
|
|
1975
|
+
model?: string | undefined;
|
|
1969
1976
|
fillOption?: {
|
|
1970
1977
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
1971
1978
|
} | undefined;
|
|
@@ -2082,6 +2089,21 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2082
2089
|
path: string;
|
|
2083
2090
|
kind: "path";
|
|
2084
2091
|
};
|
|
2092
|
+
} | {
|
|
2093
|
+
type: "movie";
|
|
2094
|
+
source: {
|
|
2095
|
+
url: string;
|
|
2096
|
+
kind: "url";
|
|
2097
|
+
} | {
|
|
2098
|
+
kind: "base64";
|
|
2099
|
+
data: string;
|
|
2100
|
+
} | {
|
|
2101
|
+
text: string;
|
|
2102
|
+
kind: "text";
|
|
2103
|
+
} | {
|
|
2104
|
+
path: string;
|
|
2105
|
+
kind: "path";
|
|
2106
|
+
};
|
|
2085
2107
|
} | {
|
|
2086
2108
|
type: "textSlide";
|
|
2087
2109
|
slide: {
|
|
@@ -2119,22 +2141,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2119
2141
|
} | {
|
|
2120
2142
|
type: "voice_over";
|
|
2121
2143
|
startAt?: number | undefined;
|
|
2122
|
-
} | {
|
|
2123
|
-
type: "movie";
|
|
2124
|
-
source: {
|
|
2125
|
-
url: string;
|
|
2126
|
-
kind: "url";
|
|
2127
|
-
} | {
|
|
2128
|
-
kind: "base64";
|
|
2129
|
-
data: string;
|
|
2130
|
-
} | {
|
|
2131
|
-
text: string;
|
|
2132
|
-
kind: "text";
|
|
2133
|
-
} | {
|
|
2134
|
-
path: string;
|
|
2135
|
-
kind: "path";
|
|
2136
|
-
};
|
|
2137
|
-
mixAudio: number;
|
|
2138
2144
|
} | undefined;
|
|
2139
2145
|
id?: string | undefined;
|
|
2140
2146
|
audio?: {
|
|
@@ -2159,9 +2165,9 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2159
2165
|
imagePrompt?: string | undefined;
|
|
2160
2166
|
description?: string | undefined;
|
|
2161
2167
|
imageParams?: {
|
|
2162
|
-
provider:
|
|
2163
|
-
style?: string | undefined;
|
|
2168
|
+
provider: string;
|
|
2164
2169
|
model?: string | undefined;
|
|
2170
|
+
style?: string | undefined;
|
|
2165
2171
|
moderation?: string | undefined;
|
|
2166
2172
|
images?: Record<string, {
|
|
2167
2173
|
type: "image";
|
|
@@ -2184,10 +2190,12 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2184
2190
|
}> | undefined;
|
|
2185
2191
|
} | undefined;
|
|
2186
2192
|
audioParams?: {
|
|
2193
|
+
movieVolume: number;
|
|
2187
2194
|
padding?: number | undefined;
|
|
2188
2195
|
} | undefined;
|
|
2189
2196
|
movieParams?: {
|
|
2190
2197
|
speed?: number | undefined;
|
|
2198
|
+
model?: string | undefined;
|
|
2191
2199
|
fillOption?: {
|
|
2192
2200
|
style: "aspectFit" | "aspectFill";
|
|
2193
2201
|
} | undefined;
|
|
@@ -2268,6 +2276,21 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2268
2276
|
path: string;
|
|
2269
2277
|
kind: "path";
|
|
2270
2278
|
};
|
|
2279
|
+
} | {
|
|
2280
|
+
type: "movie";
|
|
2281
|
+
source: {
|
|
2282
|
+
url: string;
|
|
2283
|
+
kind: "url";
|
|
2284
|
+
} | {
|
|
2285
|
+
kind: "base64";
|
|
2286
|
+
data: string;
|
|
2287
|
+
} | {
|
|
2288
|
+
text: string;
|
|
2289
|
+
kind: "text";
|
|
2290
|
+
} | {
|
|
2291
|
+
path: string;
|
|
2292
|
+
kind: "path";
|
|
2293
|
+
};
|
|
2271
2294
|
} | {
|
|
2272
2295
|
type: "textSlide";
|
|
2273
2296
|
slide: {
|
|
@@ -2305,22 +2328,6 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2305
2328
|
} | {
|
|
2306
2329
|
type: "voice_over";
|
|
2307
2330
|
startAt?: number | undefined;
|
|
2308
|
-
} | {
|
|
2309
|
-
type: "movie";
|
|
2310
|
-
source: {
|
|
2311
|
-
url: string;
|
|
2312
|
-
kind: "url";
|
|
2313
|
-
} | {
|
|
2314
|
-
kind: "base64";
|
|
2315
|
-
data: string;
|
|
2316
|
-
} | {
|
|
2317
|
-
text: string;
|
|
2318
|
-
kind: "text";
|
|
2319
|
-
} | {
|
|
2320
|
-
path: string;
|
|
2321
|
-
kind: "path";
|
|
2322
|
-
};
|
|
2323
|
-
mixAudio?: number | undefined;
|
|
2324
2331
|
} | undefined;
|
|
2325
2332
|
id?: string | undefined;
|
|
2326
2333
|
audio?: {
|
|
@@ -2346,9 +2353,9 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2346
2353
|
speaker?: string | undefined;
|
|
2347
2354
|
description?: string | undefined;
|
|
2348
2355
|
imageParams?: {
|
|
2349
|
-
provider?:
|
|
2350
|
-
style?: string | undefined;
|
|
2356
|
+
provider?: string | undefined;
|
|
2351
2357
|
model?: string | undefined;
|
|
2358
|
+
style?: string | undefined;
|
|
2352
2359
|
moderation?: string | undefined;
|
|
2353
2360
|
images?: Record<string, {
|
|
2354
2361
|
type: "image";
|
|
@@ -2372,9 +2379,11 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2372
2379
|
} | undefined;
|
|
2373
2380
|
audioParams?: {
|
|
2374
2381
|
padding?: number | undefined;
|
|
2382
|
+
movieVolume?: number | undefined;
|
|
2375
2383
|
} | undefined;
|
|
2376
2384
|
movieParams?: {
|
|
2377
2385
|
speed?: number | undefined;
|
|
2386
|
+
model?: string | undefined;
|
|
2378
2387
|
fillOption?: {
|
|
2379
2388
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
2380
2389
|
} | undefined;
|
|
@@ -2419,7 +2428,7 @@ export declare const mulmoCastCreditSchema: z.ZodObject<{
|
|
|
2419
2428
|
credit?: "closing" | undefined;
|
|
2420
2429
|
}>;
|
|
2421
2430
|
export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
2422
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
2431
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2423
2432
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2424
2433
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2425
2434
|
voiceId: z.ZodString;
|
|
@@ -2433,7 +2442,8 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2433
2442
|
speed?: number | undefined;
|
|
2434
2443
|
instruction?: string | undefined;
|
|
2435
2444
|
}>>;
|
|
2436
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
2445
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
2446
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2437
2447
|
}, "strict", z.ZodTypeAny, {
|
|
2438
2448
|
voiceId: string;
|
|
2439
2449
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2441,7 +2451,8 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2441
2451
|
speed?: number | undefined;
|
|
2442
2452
|
instruction?: string | undefined;
|
|
2443
2453
|
} | undefined;
|
|
2444
|
-
provider?:
|
|
2454
|
+
provider?: string | undefined;
|
|
2455
|
+
model?: string | undefined;
|
|
2445
2456
|
}, {
|
|
2446
2457
|
voiceId: string;
|
|
2447
2458
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2449,10 +2460,12 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2449
2460
|
speed?: number | undefined;
|
|
2450
2461
|
instruction?: string | undefined;
|
|
2451
2462
|
} | undefined;
|
|
2452
|
-
provider?:
|
|
2463
|
+
provider?: string | undefined;
|
|
2464
|
+
model?: string | undefined;
|
|
2453
2465
|
}>>;
|
|
2466
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2454
2467
|
}, "strict", z.ZodTypeAny, {
|
|
2455
|
-
provider:
|
|
2468
|
+
provider: string;
|
|
2456
2469
|
speakers: Record<string, {
|
|
2457
2470
|
voiceId: string;
|
|
2458
2471
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2460,8 +2473,10 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2460
2473
|
speed?: number | undefined;
|
|
2461
2474
|
instruction?: string | undefined;
|
|
2462
2475
|
} | undefined;
|
|
2463
|
-
provider?:
|
|
2476
|
+
provider?: string | undefined;
|
|
2477
|
+
model?: string | undefined;
|
|
2464
2478
|
}>;
|
|
2479
|
+
model?: string | undefined;
|
|
2465
2480
|
}, {
|
|
2466
2481
|
speakers: Record<string, {
|
|
2467
2482
|
voiceId: string;
|
|
@@ -2470,31 +2485,33 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2470
2485
|
speed?: number | undefined;
|
|
2471
2486
|
instruction?: string | undefined;
|
|
2472
2487
|
} | undefined;
|
|
2473
|
-
provider?:
|
|
2488
|
+
provider?: string | undefined;
|
|
2489
|
+
model?: string | undefined;
|
|
2474
2490
|
}>;
|
|
2475
|
-
provider?:
|
|
2491
|
+
provider?: string | undefined;
|
|
2492
|
+
model?: string | undefined;
|
|
2476
2493
|
}>;
|
|
2477
|
-
export declare const text2HtmlImageProviderSchema: z.ZodDefault<z.ZodEnum<[
|
|
2478
|
-
export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodEnum<[
|
|
2494
|
+
export declare const text2HtmlImageProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2495
|
+
export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2479
2496
|
export declare const mulmoGoogleMovieModelSchema: z.ZodObject<{
|
|
2480
2497
|
provider: z.ZodLiteral<"google">;
|
|
2481
|
-
model: z.ZodOptional<z.ZodEnum<[
|
|
2498
|
+
model: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
|
|
2482
2499
|
}, "strict", z.ZodTypeAny, {
|
|
2483
2500
|
provider: "google";
|
|
2484
|
-
model?:
|
|
2501
|
+
model?: string | undefined;
|
|
2485
2502
|
}, {
|
|
2486
2503
|
provider: "google";
|
|
2487
|
-
model?:
|
|
2504
|
+
model?: string | undefined;
|
|
2488
2505
|
}>;
|
|
2489
2506
|
export declare const mulmoReplicateMovieModelSchema: z.ZodObject<{
|
|
2490
2507
|
provider: z.ZodLiteral<"replicate">;
|
|
2491
|
-
model: z.ZodOptional<z.ZodEnum<[
|
|
2508
|
+
model: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
|
|
2492
2509
|
}, "strict", z.ZodTypeAny, {
|
|
2493
2510
|
provider: "replicate";
|
|
2494
|
-
model?:
|
|
2511
|
+
model?: string | undefined;
|
|
2495
2512
|
}, {
|
|
2496
2513
|
provider: "replicate";
|
|
2497
|
-
model?:
|
|
2514
|
+
model?: string | undefined;
|
|
2498
2515
|
}>;
|
|
2499
2516
|
export declare const mulmoTransitionSchema: z.ZodObject<{
|
|
2500
2517
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -2507,7 +2524,7 @@ export declare const mulmoTransitionSchema: z.ZodObject<{
|
|
|
2507
2524
|
duration?: number | undefined;
|
|
2508
2525
|
}>;
|
|
2509
2526
|
export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
2510
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
2527
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
2511
2528
|
model: z.ZodOptional<z.ZodString>;
|
|
2512
2529
|
transition: z.ZodOptional<z.ZodObject<{
|
|
2513
2530
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -2527,7 +2544,7 @@ export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
|
2527
2544
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
2528
2545
|
}>>;
|
|
2529
2546
|
}, "strict", z.ZodTypeAny, {
|
|
2530
|
-
provider?:
|
|
2547
|
+
provider?: string | undefined;
|
|
2531
2548
|
model?: string | undefined;
|
|
2532
2549
|
fillOption?: {
|
|
2533
2550
|
style: "aspectFit" | "aspectFill";
|
|
@@ -2537,7 +2554,7 @@ export declare const mulmoMovieParamsSchema: z.ZodObject<{
|
|
|
2537
2554
|
duration: number;
|
|
2538
2555
|
} | undefined;
|
|
2539
2556
|
}, {
|
|
2540
|
-
provider?:
|
|
2557
|
+
provider?: string | undefined;
|
|
2541
2558
|
model?: string | undefined;
|
|
2542
2559
|
fillOption?: {
|
|
2543
2560
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -2569,7 +2586,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2569
2586
|
height: number;
|
|
2570
2587
|
}>>;
|
|
2571
2588
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
2572
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
2589
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2573
2590
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2574
2591
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2575
2592
|
voiceId: z.ZodString;
|
|
@@ -2583,7 +2600,8 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2583
2600
|
speed?: number | undefined;
|
|
2584
2601
|
instruction?: string | undefined;
|
|
2585
2602
|
}>>;
|
|
2586
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
2603
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
2604
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2587
2605
|
}, "strict", z.ZodTypeAny, {
|
|
2588
2606
|
voiceId: string;
|
|
2589
2607
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2591,7 +2609,8 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2591
2609
|
speed?: number | undefined;
|
|
2592
2610
|
instruction?: string | undefined;
|
|
2593
2611
|
} | undefined;
|
|
2594
|
-
provider?:
|
|
2612
|
+
provider?: string | undefined;
|
|
2613
|
+
model?: string | undefined;
|
|
2595
2614
|
}, {
|
|
2596
2615
|
voiceId: string;
|
|
2597
2616
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2599,10 +2618,12 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2599
2618
|
speed?: number | undefined;
|
|
2600
2619
|
instruction?: string | undefined;
|
|
2601
2620
|
} | undefined;
|
|
2602
|
-
provider?:
|
|
2621
|
+
provider?: string | undefined;
|
|
2622
|
+
model?: string | undefined;
|
|
2603
2623
|
}>>;
|
|
2624
|
+
model: z.ZodOptional<z.ZodString>;
|
|
2604
2625
|
}, "strict", z.ZodTypeAny, {
|
|
2605
|
-
provider:
|
|
2626
|
+
provider: string;
|
|
2606
2627
|
speakers: Record<string, {
|
|
2607
2628
|
voiceId: string;
|
|
2608
2629
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2610,8 +2631,10 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2610
2631
|
speed?: number | undefined;
|
|
2611
2632
|
instruction?: string | undefined;
|
|
2612
2633
|
} | undefined;
|
|
2613
|
-
provider?:
|
|
2634
|
+
provider?: string | undefined;
|
|
2635
|
+
model?: string | undefined;
|
|
2614
2636
|
}>;
|
|
2637
|
+
model?: string | undefined;
|
|
2615
2638
|
}, {
|
|
2616
2639
|
speakers: Record<string, {
|
|
2617
2640
|
voiceId: string;
|
|
@@ -2620,12 +2643,14 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2620
2643
|
speed?: number | undefined;
|
|
2621
2644
|
instruction?: string | undefined;
|
|
2622
2645
|
} | undefined;
|
|
2623
|
-
provider?:
|
|
2646
|
+
provider?: string | undefined;
|
|
2647
|
+
model?: string | undefined;
|
|
2624
2648
|
}>;
|
|
2625
|
-
provider?:
|
|
2649
|
+
provider?: string | undefined;
|
|
2650
|
+
model?: string | undefined;
|
|
2626
2651
|
}>>;
|
|
2627
2652
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
2628
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
2653
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2629
2654
|
model: z.ZodOptional<z.ZodString>;
|
|
2630
2655
|
style: z.ZodOptional<z.ZodString>;
|
|
2631
2656
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -2709,9 +2734,9 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2709
2734
|
prompt: string;
|
|
2710
2735
|
}>]>>>;
|
|
2711
2736
|
}, "strict", z.ZodTypeAny, {
|
|
2712
|
-
provider:
|
|
2713
|
-
style?: string | undefined;
|
|
2737
|
+
provider: string;
|
|
2714
2738
|
model?: string | undefined;
|
|
2739
|
+
style?: string | undefined;
|
|
2715
2740
|
moderation?: string | undefined;
|
|
2716
2741
|
images?: Record<string, {
|
|
2717
2742
|
type: "image";
|
|
@@ -2733,9 +2758,9 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2733
2758
|
prompt: string;
|
|
2734
2759
|
}> | undefined;
|
|
2735
2760
|
}, {
|
|
2736
|
-
provider?:
|
|
2737
|
-
style?: string | undefined;
|
|
2761
|
+
provider?: string | undefined;
|
|
2738
2762
|
model?: string | undefined;
|
|
2763
|
+
style?: string | undefined;
|
|
2739
2764
|
moderation?: string | undefined;
|
|
2740
2765
|
images?: Record<string, {
|
|
2741
2766
|
type: "image";
|
|
@@ -2758,7 +2783,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2758
2783
|
}> | undefined;
|
|
2759
2784
|
}>>;
|
|
2760
2785
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
2761
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
2786
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
2762
2787
|
model: z.ZodOptional<z.ZodString>;
|
|
2763
2788
|
transition: z.ZodOptional<z.ZodObject<{
|
|
2764
2789
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -2778,7 +2803,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2778
2803
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
2779
2804
|
}>>;
|
|
2780
2805
|
}, "strict", z.ZodTypeAny, {
|
|
2781
|
-
provider?:
|
|
2806
|
+
provider?: string | undefined;
|
|
2782
2807
|
model?: string | undefined;
|
|
2783
2808
|
fillOption?: {
|
|
2784
2809
|
style: "aspectFit" | "aspectFill";
|
|
@@ -2788,7 +2813,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2788
2813
|
duration: number;
|
|
2789
2814
|
} | undefined;
|
|
2790
2815
|
}, {
|
|
2791
|
-
provider?:
|
|
2816
|
+
provider?: string | undefined;
|
|
2792
2817
|
model?: string | undefined;
|
|
2793
2818
|
fillOption?: {
|
|
2794
2819
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -2801,12 +2826,12 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2801
2826
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
2802
2827
|
model: z.ZodOptional<z.ZodString>;
|
|
2803
2828
|
} & {
|
|
2804
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
2829
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2805
2830
|
}, "strict", z.ZodTypeAny, {
|
|
2806
|
-
provider:
|
|
2831
|
+
provider: string;
|
|
2807
2832
|
model?: string | undefined;
|
|
2808
2833
|
}, {
|
|
2809
|
-
provider?:
|
|
2834
|
+
provider?: string | undefined;
|
|
2810
2835
|
model?: string | undefined;
|
|
2811
2836
|
}>>;
|
|
2812
2837
|
textSlideParams: z.ZodOptional<z.ZodObject<{
|
|
@@ -2946,7 +2971,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2946
2971
|
height: number;
|
|
2947
2972
|
};
|
|
2948
2973
|
speechParams: {
|
|
2949
|
-
provider:
|
|
2974
|
+
provider: string;
|
|
2950
2975
|
speakers: Record<string, {
|
|
2951
2976
|
voiceId: string;
|
|
2952
2977
|
displayName?: Record<string, string> | undefined;
|
|
@@ -2954,13 +2979,15 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2954
2979
|
speed?: number | undefined;
|
|
2955
2980
|
instruction?: string | undefined;
|
|
2956
2981
|
} | undefined;
|
|
2957
|
-
provider?:
|
|
2982
|
+
provider?: string | undefined;
|
|
2983
|
+
model?: string | undefined;
|
|
2958
2984
|
}>;
|
|
2985
|
+
model?: string | undefined;
|
|
2959
2986
|
};
|
|
2960
2987
|
imageParams?: {
|
|
2961
|
-
provider:
|
|
2962
|
-
style?: string | undefined;
|
|
2988
|
+
provider: string;
|
|
2963
2989
|
model?: string | undefined;
|
|
2990
|
+
style?: string | undefined;
|
|
2964
2991
|
moderation?: string | undefined;
|
|
2965
2992
|
images?: Record<string, {
|
|
2966
2993
|
type: "image";
|
|
@@ -2983,7 +3010,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2983
3010
|
}> | undefined;
|
|
2984
3011
|
} | undefined;
|
|
2985
3012
|
movieParams?: {
|
|
2986
|
-
provider?:
|
|
3013
|
+
provider?: string | undefined;
|
|
2987
3014
|
model?: string | undefined;
|
|
2988
3015
|
fillOption?: {
|
|
2989
3016
|
style: "aspectFit" | "aspectFill";
|
|
@@ -2994,7 +3021,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2994
3021
|
} | undefined;
|
|
2995
3022
|
} | undefined;
|
|
2996
3023
|
htmlImageParams?: {
|
|
2997
|
-
provider:
|
|
3024
|
+
provider: string;
|
|
2998
3025
|
model?: string | undefined;
|
|
2999
3026
|
} | undefined;
|
|
3000
3027
|
textSlideParams?: {
|
|
@@ -3010,9 +3037,9 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3010
3037
|
credit?: "closing" | undefined;
|
|
3011
3038
|
};
|
|
3012
3039
|
imageParams?: {
|
|
3013
|
-
provider?:
|
|
3014
|
-
style?: string | undefined;
|
|
3040
|
+
provider?: string | undefined;
|
|
3015
3041
|
model?: string | undefined;
|
|
3042
|
+
style?: string | undefined;
|
|
3016
3043
|
moderation?: string | undefined;
|
|
3017
3044
|
images?: Record<string, {
|
|
3018
3045
|
type: "image";
|
|
@@ -3057,7 +3084,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3057
3084
|
suppressSpeech?: boolean | undefined;
|
|
3058
3085
|
} | undefined;
|
|
3059
3086
|
movieParams?: {
|
|
3060
|
-
provider?:
|
|
3087
|
+
provider?: string | undefined;
|
|
3061
3088
|
model?: string | undefined;
|
|
3062
3089
|
fillOption?: {
|
|
3063
3090
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -3068,7 +3095,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3068
3095
|
} | undefined;
|
|
3069
3096
|
} | undefined;
|
|
3070
3097
|
htmlImageParams?: {
|
|
3071
|
-
provider?:
|
|
3098
|
+
provider?: string | undefined;
|
|
3072
3099
|
model?: string | undefined;
|
|
3073
3100
|
} | undefined;
|
|
3074
3101
|
textSlideParams?: {
|
|
@@ -3090,9 +3117,11 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
3090
3117
|
speed?: number | undefined;
|
|
3091
3118
|
instruction?: string | undefined;
|
|
3092
3119
|
} | undefined;
|
|
3093
|
-
provider?:
|
|
3120
|
+
provider?: string | undefined;
|
|
3121
|
+
model?: string | undefined;
|
|
3094
3122
|
}>;
|
|
3095
|
-
provider?:
|
|
3123
|
+
provider?: string | undefined;
|
|
3124
|
+
model?: string | undefined;
|
|
3096
3125
|
} | undefined;
|
|
3097
3126
|
}>;
|
|
3098
3127
|
export declare const mulmoReferenceSchema: z.ZodObject<{
|
|
@@ -3133,7 +3162,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3133
3162
|
height: number;
|
|
3134
3163
|
}>>;
|
|
3135
3164
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
3136
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
3165
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
3137
3166
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3138
3167
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3139
3168
|
voiceId: z.ZodString;
|
|
@@ -3147,7 +3176,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3147
3176
|
speed?: number | undefined;
|
|
3148
3177
|
instruction?: string | undefined;
|
|
3149
3178
|
}>>;
|
|
3150
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
3179
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
3180
|
+
model: z.ZodOptional<z.ZodString>;
|
|
3151
3181
|
}, "strict", z.ZodTypeAny, {
|
|
3152
3182
|
voiceId: string;
|
|
3153
3183
|
displayName?: Record<string, string> | undefined;
|
|
@@ -3155,7 +3185,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3155
3185
|
speed?: number | undefined;
|
|
3156
3186
|
instruction?: string | undefined;
|
|
3157
3187
|
} | undefined;
|
|
3158
|
-
provider?:
|
|
3188
|
+
provider?: string | undefined;
|
|
3189
|
+
model?: string | undefined;
|
|
3159
3190
|
}, {
|
|
3160
3191
|
voiceId: string;
|
|
3161
3192
|
displayName?: Record<string, string> | undefined;
|
|
@@ -3163,10 +3194,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3163
3194
|
speed?: number | undefined;
|
|
3164
3195
|
instruction?: string | undefined;
|
|
3165
3196
|
} | undefined;
|
|
3166
|
-
provider?:
|
|
3197
|
+
provider?: string | undefined;
|
|
3198
|
+
model?: string | undefined;
|
|
3167
3199
|
}>>;
|
|
3200
|
+
model: z.ZodOptional<z.ZodString>;
|
|
3168
3201
|
}, "strict", z.ZodTypeAny, {
|
|
3169
|
-
provider:
|
|
3202
|
+
provider: string;
|
|
3170
3203
|
speakers: Record<string, {
|
|
3171
3204
|
voiceId: string;
|
|
3172
3205
|
displayName?: Record<string, string> | undefined;
|
|
@@ -3174,8 +3207,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3174
3207
|
speed?: number | undefined;
|
|
3175
3208
|
instruction?: string | undefined;
|
|
3176
3209
|
} | undefined;
|
|
3177
|
-
provider?:
|
|
3210
|
+
provider?: string | undefined;
|
|
3211
|
+
model?: string | undefined;
|
|
3178
3212
|
}>;
|
|
3213
|
+
model?: string | undefined;
|
|
3179
3214
|
}, {
|
|
3180
3215
|
speakers: Record<string, {
|
|
3181
3216
|
voiceId: string;
|
|
@@ -3184,12 +3219,14 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3184
3219
|
speed?: number | undefined;
|
|
3185
3220
|
instruction?: string | undefined;
|
|
3186
3221
|
} | undefined;
|
|
3187
|
-
provider?:
|
|
3222
|
+
provider?: string | undefined;
|
|
3223
|
+
model?: string | undefined;
|
|
3188
3224
|
}>;
|
|
3189
|
-
provider?:
|
|
3225
|
+
provider?: string | undefined;
|
|
3226
|
+
model?: string | undefined;
|
|
3190
3227
|
}>>;
|
|
3191
3228
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
3192
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
3229
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
3193
3230
|
model: z.ZodOptional<z.ZodString>;
|
|
3194
3231
|
style: z.ZodOptional<z.ZodString>;
|
|
3195
3232
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -3273,9 +3310,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3273
3310
|
prompt: string;
|
|
3274
3311
|
}>]>>>;
|
|
3275
3312
|
}, "strict", z.ZodTypeAny, {
|
|
3276
|
-
provider:
|
|
3277
|
-
style?: string | undefined;
|
|
3313
|
+
provider: string;
|
|
3278
3314
|
model?: string | undefined;
|
|
3315
|
+
style?: string | undefined;
|
|
3279
3316
|
moderation?: string | undefined;
|
|
3280
3317
|
images?: Record<string, {
|
|
3281
3318
|
type: "image";
|
|
@@ -3297,9 +3334,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3297
3334
|
prompt: string;
|
|
3298
3335
|
}> | undefined;
|
|
3299
3336
|
}, {
|
|
3300
|
-
provider?:
|
|
3301
|
-
style?: string | undefined;
|
|
3337
|
+
provider?: string | undefined;
|
|
3302
3338
|
model?: string | undefined;
|
|
3339
|
+
style?: string | undefined;
|
|
3303
3340
|
moderation?: string | undefined;
|
|
3304
3341
|
images?: Record<string, {
|
|
3305
3342
|
type: "image";
|
|
@@ -3322,7 +3359,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3322
3359
|
}> | undefined;
|
|
3323
3360
|
}>>;
|
|
3324
3361
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
3325
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
3362
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
3326
3363
|
model: z.ZodOptional<z.ZodString>;
|
|
3327
3364
|
transition: z.ZodOptional<z.ZodObject<{
|
|
3328
3365
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -3342,7 +3379,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3342
3379
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
3343
3380
|
}>>;
|
|
3344
3381
|
}, "strict", z.ZodTypeAny, {
|
|
3345
|
-
provider?:
|
|
3382
|
+
provider?: string | undefined;
|
|
3346
3383
|
model?: string | undefined;
|
|
3347
3384
|
fillOption?: {
|
|
3348
3385
|
style: "aspectFit" | "aspectFill";
|
|
@@ -3352,7 +3389,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3352
3389
|
duration: number;
|
|
3353
3390
|
} | undefined;
|
|
3354
3391
|
}, {
|
|
3355
|
-
provider?:
|
|
3392
|
+
provider?: string | undefined;
|
|
3356
3393
|
model?: string | undefined;
|
|
3357
3394
|
fillOption?: {
|
|
3358
3395
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -3365,12 +3402,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3365
3402
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
3366
3403
|
model: z.ZodOptional<z.ZodString>;
|
|
3367
3404
|
} & {
|
|
3368
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
3405
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
3369
3406
|
}, "strict", z.ZodTypeAny, {
|
|
3370
|
-
provider:
|
|
3407
|
+
provider: string;
|
|
3371
3408
|
model?: string | undefined;
|
|
3372
3409
|
}, {
|
|
3373
|
-
provider?:
|
|
3410
|
+
provider?: string | undefined;
|
|
3374
3411
|
model?: string | undefined;
|
|
3375
3412
|
}>>;
|
|
3376
3413
|
textSlideParams: z.ZodOptional<z.ZodObject<{
|
|
@@ -3767,8 +3804,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3767
3804
|
path: string;
|
|
3768
3805
|
kind: "path";
|
|
3769
3806
|
}>]>;
|
|
3770
|
-
} & {
|
|
3771
|
-
mixAudio: z.ZodDefault<z.ZodNumber>;
|
|
3772
3807
|
}, "strict", z.ZodTypeAny, {
|
|
3773
3808
|
type: "movie";
|
|
3774
3809
|
source: {
|
|
@@ -3784,7 +3819,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3784
3819
|
path: string;
|
|
3785
3820
|
kind: "path";
|
|
3786
3821
|
};
|
|
3787
|
-
mixAudio: number;
|
|
3788
3822
|
}, {
|
|
3789
3823
|
type: "movie";
|
|
3790
3824
|
source: {
|
|
@@ -3800,7 +3834,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3800
3834
|
path: string;
|
|
3801
3835
|
kind: "path";
|
|
3802
3836
|
};
|
|
3803
|
-
mixAudio?: number | undefined;
|
|
3804
3837
|
}>, z.ZodObject<{
|
|
3805
3838
|
type: z.ZodLiteral<"textSlide">;
|
|
3806
3839
|
slide: z.ZodObject<{
|
|
@@ -4026,7 +4059,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4026
4059
|
}>]>>;
|
|
4027
4060
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
4028
4061
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
4029
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
4062
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
4030
4063
|
model: z.ZodOptional<z.ZodString>;
|
|
4031
4064
|
style: z.ZodOptional<z.ZodString>;
|
|
4032
4065
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -4110,9 +4143,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4110
4143
|
prompt: string;
|
|
4111
4144
|
}>]>>>;
|
|
4112
4145
|
}, "strict", z.ZodTypeAny, {
|
|
4113
|
-
provider:
|
|
4114
|
-
style?: string | undefined;
|
|
4146
|
+
provider: string;
|
|
4115
4147
|
model?: string | undefined;
|
|
4148
|
+
style?: string | undefined;
|
|
4116
4149
|
moderation?: string | undefined;
|
|
4117
4150
|
images?: Record<string, {
|
|
4118
4151
|
type: "image";
|
|
@@ -4134,9 +4167,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4134
4167
|
prompt: string;
|
|
4135
4168
|
}> | undefined;
|
|
4136
4169
|
}, {
|
|
4137
|
-
provider?:
|
|
4138
|
-
style?: string | undefined;
|
|
4170
|
+
provider?: string | undefined;
|
|
4139
4171
|
model?: string | undefined;
|
|
4172
|
+
style?: string | undefined;
|
|
4140
4173
|
moderation?: string | undefined;
|
|
4141
4174
|
images?: Record<string, {
|
|
4142
4175
|
type: "image";
|
|
@@ -4160,12 +4193,16 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4160
4193
|
}>>;
|
|
4161
4194
|
audioParams: z.ZodOptional<z.ZodObject<{
|
|
4162
4195
|
padding: z.ZodOptional<z.ZodNumber>;
|
|
4196
|
+
movieVolume: z.ZodDefault<z.ZodNumber>;
|
|
4163
4197
|
}, "strict", z.ZodTypeAny, {
|
|
4198
|
+
movieVolume: number;
|
|
4164
4199
|
padding?: number | undefined;
|
|
4165
4200
|
}, {
|
|
4166
4201
|
padding?: number | undefined;
|
|
4202
|
+
movieVolume?: number | undefined;
|
|
4167
4203
|
}>>;
|
|
4168
4204
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
4205
|
+
model: z.ZodOptional<z.ZodString>;
|
|
4169
4206
|
fillOption: z.ZodOptional<z.ZodObject<{
|
|
4170
4207
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
4171
4208
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4176,11 +4213,13 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4176
4213
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
4177
4214
|
}, "strip", z.ZodTypeAny, {
|
|
4178
4215
|
speed?: number | undefined;
|
|
4216
|
+
model?: string | undefined;
|
|
4179
4217
|
fillOption?: {
|
|
4180
4218
|
style: "aspectFit" | "aspectFill";
|
|
4181
4219
|
} | undefined;
|
|
4182
4220
|
}, {
|
|
4183
4221
|
speed?: number | undefined;
|
|
4222
|
+
model?: string | undefined;
|
|
4184
4223
|
fillOption?: {
|
|
4185
4224
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
4186
4225
|
} | undefined;
|
|
@@ -4297,6 +4336,21 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4297
4336
|
path: string;
|
|
4298
4337
|
kind: "path";
|
|
4299
4338
|
};
|
|
4339
|
+
} | {
|
|
4340
|
+
type: "movie";
|
|
4341
|
+
source: {
|
|
4342
|
+
url: string;
|
|
4343
|
+
kind: "url";
|
|
4344
|
+
} | {
|
|
4345
|
+
kind: "base64";
|
|
4346
|
+
data: string;
|
|
4347
|
+
} | {
|
|
4348
|
+
text: string;
|
|
4349
|
+
kind: "text";
|
|
4350
|
+
} | {
|
|
4351
|
+
path: string;
|
|
4352
|
+
kind: "path";
|
|
4353
|
+
};
|
|
4300
4354
|
} | {
|
|
4301
4355
|
type: "textSlide";
|
|
4302
4356
|
slide: {
|
|
@@ -4334,22 +4388,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4334
4388
|
} | {
|
|
4335
4389
|
type: "voice_over";
|
|
4336
4390
|
startAt?: number | undefined;
|
|
4337
|
-
} | {
|
|
4338
|
-
type: "movie";
|
|
4339
|
-
source: {
|
|
4340
|
-
url: string;
|
|
4341
|
-
kind: "url";
|
|
4342
|
-
} | {
|
|
4343
|
-
kind: "base64";
|
|
4344
|
-
data: string;
|
|
4345
|
-
} | {
|
|
4346
|
-
text: string;
|
|
4347
|
-
kind: "text";
|
|
4348
|
-
} | {
|
|
4349
|
-
path: string;
|
|
4350
|
-
kind: "path";
|
|
4351
|
-
};
|
|
4352
|
-
mixAudio: number;
|
|
4353
4391
|
} | undefined;
|
|
4354
4392
|
id?: string | undefined;
|
|
4355
4393
|
audio?: {
|
|
@@ -4374,9 +4412,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4374
4412
|
imagePrompt?: string | undefined;
|
|
4375
4413
|
description?: string | undefined;
|
|
4376
4414
|
imageParams?: {
|
|
4377
|
-
provider:
|
|
4378
|
-
style?: string | undefined;
|
|
4415
|
+
provider: string;
|
|
4379
4416
|
model?: string | undefined;
|
|
4417
|
+
style?: string | undefined;
|
|
4380
4418
|
moderation?: string | undefined;
|
|
4381
4419
|
images?: Record<string, {
|
|
4382
4420
|
type: "image";
|
|
@@ -4399,10 +4437,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4399
4437
|
}> | undefined;
|
|
4400
4438
|
} | undefined;
|
|
4401
4439
|
audioParams?: {
|
|
4440
|
+
movieVolume: number;
|
|
4402
4441
|
padding?: number | undefined;
|
|
4403
4442
|
} | undefined;
|
|
4404
4443
|
movieParams?: {
|
|
4405
4444
|
speed?: number | undefined;
|
|
4445
|
+
model?: string | undefined;
|
|
4406
4446
|
fillOption?: {
|
|
4407
4447
|
style: "aspectFit" | "aspectFill";
|
|
4408
4448
|
} | undefined;
|
|
@@ -4483,6 +4523,21 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4483
4523
|
path: string;
|
|
4484
4524
|
kind: "path";
|
|
4485
4525
|
};
|
|
4526
|
+
} | {
|
|
4527
|
+
type: "movie";
|
|
4528
|
+
source: {
|
|
4529
|
+
url: string;
|
|
4530
|
+
kind: "url";
|
|
4531
|
+
} | {
|
|
4532
|
+
kind: "base64";
|
|
4533
|
+
data: string;
|
|
4534
|
+
} | {
|
|
4535
|
+
text: string;
|
|
4536
|
+
kind: "text";
|
|
4537
|
+
} | {
|
|
4538
|
+
path: string;
|
|
4539
|
+
kind: "path";
|
|
4540
|
+
};
|
|
4486
4541
|
} | {
|
|
4487
4542
|
type: "textSlide";
|
|
4488
4543
|
slide: {
|
|
@@ -4520,22 +4575,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4520
4575
|
} | {
|
|
4521
4576
|
type: "voice_over";
|
|
4522
4577
|
startAt?: number | undefined;
|
|
4523
|
-
} | {
|
|
4524
|
-
type: "movie";
|
|
4525
|
-
source: {
|
|
4526
|
-
url: string;
|
|
4527
|
-
kind: "url";
|
|
4528
|
-
} | {
|
|
4529
|
-
kind: "base64";
|
|
4530
|
-
data: string;
|
|
4531
|
-
} | {
|
|
4532
|
-
text: string;
|
|
4533
|
-
kind: "text";
|
|
4534
|
-
} | {
|
|
4535
|
-
path: string;
|
|
4536
|
-
kind: "path";
|
|
4537
|
-
};
|
|
4538
|
-
mixAudio?: number | undefined;
|
|
4539
4578
|
} | undefined;
|
|
4540
4579
|
id?: string | undefined;
|
|
4541
4580
|
audio?: {
|
|
@@ -4561,9 +4600,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4561
4600
|
speaker?: string | undefined;
|
|
4562
4601
|
description?: string | undefined;
|
|
4563
4602
|
imageParams?: {
|
|
4564
|
-
provider?:
|
|
4565
|
-
style?: string | undefined;
|
|
4603
|
+
provider?: string | undefined;
|
|
4566
4604
|
model?: string | undefined;
|
|
4605
|
+
style?: string | undefined;
|
|
4567
4606
|
moderation?: string | undefined;
|
|
4568
4607
|
images?: Record<string, {
|
|
4569
4608
|
type: "image";
|
|
@@ -4587,9 +4626,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4587
4626
|
} | undefined;
|
|
4588
4627
|
audioParams?: {
|
|
4589
4628
|
padding?: number | undefined;
|
|
4629
|
+
movieVolume?: number | undefined;
|
|
4590
4630
|
} | undefined;
|
|
4591
4631
|
movieParams?: {
|
|
4592
4632
|
speed?: number | undefined;
|
|
4633
|
+
model?: string | undefined;
|
|
4593
4634
|
fillOption?: {
|
|
4594
4635
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
4595
4636
|
} | undefined;
|
|
@@ -4647,7 +4688,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4647
4688
|
height: number;
|
|
4648
4689
|
};
|
|
4649
4690
|
speechParams: {
|
|
4650
|
-
provider:
|
|
4691
|
+
provider: string;
|
|
4651
4692
|
speakers: Record<string, {
|
|
4652
4693
|
voiceId: string;
|
|
4653
4694
|
displayName?: Record<string, string> | undefined;
|
|
@@ -4655,8 +4696,10 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4655
4696
|
speed?: number | undefined;
|
|
4656
4697
|
instruction?: string | undefined;
|
|
4657
4698
|
} | undefined;
|
|
4658
|
-
provider?:
|
|
4699
|
+
provider?: string | undefined;
|
|
4700
|
+
model?: string | undefined;
|
|
4659
4701
|
}>;
|
|
4702
|
+
model?: string | undefined;
|
|
4660
4703
|
};
|
|
4661
4704
|
beats: {
|
|
4662
4705
|
text: string;
|
|
@@ -4717,6 +4760,21 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4717
4760
|
path: string;
|
|
4718
4761
|
kind: "path";
|
|
4719
4762
|
};
|
|
4763
|
+
} | {
|
|
4764
|
+
type: "movie";
|
|
4765
|
+
source: {
|
|
4766
|
+
url: string;
|
|
4767
|
+
kind: "url";
|
|
4768
|
+
} | {
|
|
4769
|
+
kind: "base64";
|
|
4770
|
+
data: string;
|
|
4771
|
+
} | {
|
|
4772
|
+
text: string;
|
|
4773
|
+
kind: "text";
|
|
4774
|
+
} | {
|
|
4775
|
+
path: string;
|
|
4776
|
+
kind: "path";
|
|
4777
|
+
};
|
|
4720
4778
|
} | {
|
|
4721
4779
|
type: "textSlide";
|
|
4722
4780
|
slide: {
|
|
@@ -4754,22 +4812,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4754
4812
|
} | {
|
|
4755
4813
|
type: "voice_over";
|
|
4756
4814
|
startAt?: number | undefined;
|
|
4757
|
-
} | {
|
|
4758
|
-
type: "movie";
|
|
4759
|
-
source: {
|
|
4760
|
-
url: string;
|
|
4761
|
-
kind: "url";
|
|
4762
|
-
} | {
|
|
4763
|
-
kind: "base64";
|
|
4764
|
-
data: string;
|
|
4765
|
-
} | {
|
|
4766
|
-
text: string;
|
|
4767
|
-
kind: "text";
|
|
4768
|
-
} | {
|
|
4769
|
-
path: string;
|
|
4770
|
-
kind: "path";
|
|
4771
|
-
};
|
|
4772
|
-
mixAudio: number;
|
|
4773
4815
|
} | undefined;
|
|
4774
4816
|
id?: string | undefined;
|
|
4775
4817
|
audio?: {
|
|
@@ -4794,9 +4836,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4794
4836
|
imagePrompt?: string | undefined;
|
|
4795
4837
|
description?: string | undefined;
|
|
4796
4838
|
imageParams?: {
|
|
4797
|
-
provider:
|
|
4798
|
-
style?: string | undefined;
|
|
4839
|
+
provider: string;
|
|
4799
4840
|
model?: string | undefined;
|
|
4841
|
+
style?: string | undefined;
|
|
4800
4842
|
moderation?: string | undefined;
|
|
4801
4843
|
images?: Record<string, {
|
|
4802
4844
|
type: "image";
|
|
@@ -4819,10 +4861,12 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4819
4861
|
}> | undefined;
|
|
4820
4862
|
} | undefined;
|
|
4821
4863
|
audioParams?: {
|
|
4864
|
+
movieVolume: number;
|
|
4822
4865
|
padding?: number | undefined;
|
|
4823
4866
|
} | undefined;
|
|
4824
4867
|
movieParams?: {
|
|
4825
4868
|
speed?: number | undefined;
|
|
4869
|
+
model?: string | undefined;
|
|
4826
4870
|
fillOption?: {
|
|
4827
4871
|
style: "aspectFit" | "aspectFill";
|
|
4828
4872
|
} | undefined;
|
|
@@ -4850,9 +4894,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4850
4894
|
title?: string | undefined;
|
|
4851
4895
|
description?: string | undefined;
|
|
4852
4896
|
imageParams?: {
|
|
4853
|
-
provider:
|
|
4854
|
-
style?: string | undefined;
|
|
4897
|
+
provider: string;
|
|
4855
4898
|
model?: string | undefined;
|
|
4899
|
+
style?: string | undefined;
|
|
4856
4900
|
moderation?: string | undefined;
|
|
4857
4901
|
images?: Record<string, {
|
|
4858
4902
|
type: "image";
|
|
@@ -4875,7 +4919,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4875
4919
|
}> | undefined;
|
|
4876
4920
|
} | undefined;
|
|
4877
4921
|
movieParams?: {
|
|
4878
|
-
provider?:
|
|
4922
|
+
provider?: string | undefined;
|
|
4879
4923
|
model?: string | undefined;
|
|
4880
4924
|
fillOption?: {
|
|
4881
4925
|
style: "aspectFit" | "aspectFill";
|
|
@@ -4886,7 +4930,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4886
4930
|
} | undefined;
|
|
4887
4931
|
} | undefined;
|
|
4888
4932
|
htmlImageParams?: {
|
|
4889
|
-
provider:
|
|
4933
|
+
provider: string;
|
|
4890
4934
|
model?: string | undefined;
|
|
4891
4935
|
} | undefined;
|
|
4892
4936
|
textSlideParams?: {
|
|
@@ -4968,18 +5012,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4968
5012
|
kind: "path";
|
|
4969
5013
|
};
|
|
4970
5014
|
} | {
|
|
4971
|
-
type: "
|
|
4972
|
-
|
|
4973
|
-
title: string;
|
|
4974
|
-
subtitle?: string | undefined;
|
|
4975
|
-
bullets?: string[] | undefined;
|
|
4976
|
-
};
|
|
4977
|
-
} | {
|
|
4978
|
-
type: "chart";
|
|
4979
|
-
title: string;
|
|
4980
|
-
chartData: Record<string, any>;
|
|
4981
|
-
} | {
|
|
4982
|
-
code: {
|
|
5015
|
+
type: "movie";
|
|
5016
|
+
source: {
|
|
4983
5017
|
url: string;
|
|
4984
5018
|
kind: "url";
|
|
4985
5019
|
} | {
|
|
@@ -4992,21 +5026,19 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4992
5026
|
path: string;
|
|
4993
5027
|
kind: "path";
|
|
4994
5028
|
};
|
|
4995
|
-
type: "mermaid";
|
|
4996
|
-
title: string;
|
|
4997
|
-
appendix?: string[] | undefined;
|
|
4998
5029
|
} | {
|
|
4999
|
-
type: "
|
|
5000
|
-
|
|
5001
|
-
|
|
5002
|
-
|
|
5003
|
-
|
|
5030
|
+
type: "textSlide";
|
|
5031
|
+
slide: {
|
|
5032
|
+
title: string;
|
|
5033
|
+
subtitle?: string | undefined;
|
|
5034
|
+
bullets?: string[] | undefined;
|
|
5035
|
+
};
|
|
5004
5036
|
} | {
|
|
5005
|
-
type: "
|
|
5006
|
-
|
|
5037
|
+
type: "chart";
|
|
5038
|
+
title: string;
|
|
5039
|
+
chartData: Record<string, any>;
|
|
5007
5040
|
} | {
|
|
5008
|
-
|
|
5009
|
-
source: {
|
|
5041
|
+
code: {
|
|
5010
5042
|
url: string;
|
|
5011
5043
|
kind: "url";
|
|
5012
5044
|
} | {
|
|
@@ -5019,7 +5051,18 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5019
5051
|
path: string;
|
|
5020
5052
|
kind: "path";
|
|
5021
5053
|
};
|
|
5022
|
-
|
|
5054
|
+
type: "mermaid";
|
|
5055
|
+
title: string;
|
|
5056
|
+
appendix?: string[] | undefined;
|
|
5057
|
+
} | {
|
|
5058
|
+
type: "html_tailwind";
|
|
5059
|
+
html: string | string[];
|
|
5060
|
+
} | {
|
|
5061
|
+
type: "beat";
|
|
5062
|
+
id?: string | undefined;
|
|
5063
|
+
} | {
|
|
5064
|
+
type: "voice_over";
|
|
5065
|
+
startAt?: number | undefined;
|
|
5023
5066
|
} | undefined;
|
|
5024
5067
|
id?: string | undefined;
|
|
5025
5068
|
audio?: {
|
|
@@ -5045,9 +5088,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5045
5088
|
speaker?: string | undefined;
|
|
5046
5089
|
description?: string | undefined;
|
|
5047
5090
|
imageParams?: {
|
|
5048
|
-
provider?:
|
|
5049
|
-
style?: string | undefined;
|
|
5091
|
+
provider?: string | undefined;
|
|
5050
5092
|
model?: string | undefined;
|
|
5093
|
+
style?: string | undefined;
|
|
5051
5094
|
moderation?: string | undefined;
|
|
5052
5095
|
images?: Record<string, {
|
|
5053
5096
|
type: "image";
|
|
@@ -5071,9 +5114,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5071
5114
|
} | undefined;
|
|
5072
5115
|
audioParams?: {
|
|
5073
5116
|
padding?: number | undefined;
|
|
5117
|
+
movieVolume?: number | undefined;
|
|
5074
5118
|
} | undefined;
|
|
5075
5119
|
movieParams?: {
|
|
5076
5120
|
speed?: number | undefined;
|
|
5121
|
+
model?: string | undefined;
|
|
5077
5122
|
fillOption?: {
|
|
5078
5123
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
5079
5124
|
} | undefined;
|
|
@@ -5101,9 +5146,9 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5101
5146
|
title?: string | undefined;
|
|
5102
5147
|
description?: string | undefined;
|
|
5103
5148
|
imageParams?: {
|
|
5104
|
-
provider?:
|
|
5105
|
-
style?: string | undefined;
|
|
5149
|
+
provider?: string | undefined;
|
|
5106
5150
|
model?: string | undefined;
|
|
5151
|
+
style?: string | undefined;
|
|
5107
5152
|
moderation?: string | undefined;
|
|
5108
5153
|
images?: Record<string, {
|
|
5109
5154
|
type: "image";
|
|
@@ -5148,7 +5193,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5148
5193
|
suppressSpeech?: boolean | undefined;
|
|
5149
5194
|
} | undefined;
|
|
5150
5195
|
movieParams?: {
|
|
5151
|
-
provider?:
|
|
5196
|
+
provider?: string | undefined;
|
|
5152
5197
|
model?: string | undefined;
|
|
5153
5198
|
fillOption?: {
|
|
5154
5199
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -5159,7 +5204,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5159
5204
|
} | undefined;
|
|
5160
5205
|
} | undefined;
|
|
5161
5206
|
htmlImageParams?: {
|
|
5162
|
-
provider?:
|
|
5207
|
+
provider?: string | undefined;
|
|
5163
5208
|
model?: string | undefined;
|
|
5164
5209
|
} | undefined;
|
|
5165
5210
|
textSlideParams?: {
|
|
@@ -5181,9 +5226,11 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5181
5226
|
speed?: number | undefined;
|
|
5182
5227
|
instruction?: string | undefined;
|
|
5183
5228
|
} | undefined;
|
|
5184
|
-
provider?:
|
|
5229
|
+
provider?: string | undefined;
|
|
5230
|
+
model?: string | undefined;
|
|
5185
5231
|
}>;
|
|
5186
|
-
provider?:
|
|
5232
|
+
provider?: string | undefined;
|
|
5233
|
+
model?: string | undefined;
|
|
5187
5234
|
} | undefined;
|
|
5188
5235
|
references?: {
|
|
5189
5236
|
url: string;
|
|
@@ -5201,6 +5248,7 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
|
|
|
5201
5248
|
audioDuration: z.ZodOptional<z.ZodNumber>;
|
|
5202
5249
|
movieDuration: z.ZodOptional<z.ZodNumber>;
|
|
5203
5250
|
silenceDuration: z.ZodOptional<z.ZodNumber>;
|
|
5251
|
+
hasMovieAudio: z.ZodOptional<z.ZodBoolean>;
|
|
5204
5252
|
audioFile: z.ZodOptional<z.ZodString>;
|
|
5205
5253
|
imageFile: z.ZodOptional<z.ZodString>;
|
|
5206
5254
|
movieFile: z.ZodOptional<z.ZodString>;
|
|
@@ -5212,6 +5260,7 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
|
|
|
5212
5260
|
audioDuration?: number | undefined;
|
|
5213
5261
|
movieDuration?: number | undefined;
|
|
5214
5262
|
silenceDuration?: number | undefined;
|
|
5263
|
+
hasMovieAudio?: boolean | undefined;
|
|
5215
5264
|
audioFile?: string | undefined;
|
|
5216
5265
|
imageFile?: string | undefined;
|
|
5217
5266
|
movieFile?: string | undefined;
|
|
@@ -5223,6 +5272,7 @@ export declare const mulmoStudioBeatSchema: z.ZodObject<{
|
|
|
5223
5272
|
audioDuration?: number | undefined;
|
|
5224
5273
|
movieDuration?: number | undefined;
|
|
5225
5274
|
silenceDuration?: number | undefined;
|
|
5275
|
+
hasMovieAudio?: boolean | undefined;
|
|
5226
5276
|
audioFile?: string | undefined;
|
|
5227
5277
|
imageFile?: string | undefined;
|
|
5228
5278
|
movieFile?: string | undefined;
|
|
@@ -5410,7 +5460,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5410
5460
|
height: number;
|
|
5411
5461
|
}>>;
|
|
5412
5462
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
5413
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
5463
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
5414
5464
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5415
5465
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5416
5466
|
voiceId: z.ZodString;
|
|
@@ -5424,7 +5474,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5424
5474
|
speed?: number | undefined;
|
|
5425
5475
|
instruction?: string | undefined;
|
|
5426
5476
|
}>>;
|
|
5427
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
5477
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
5478
|
+
model: z.ZodOptional<z.ZodString>;
|
|
5428
5479
|
}, "strict", z.ZodTypeAny, {
|
|
5429
5480
|
voiceId: string;
|
|
5430
5481
|
displayName?: Record<string, string> | undefined;
|
|
@@ -5432,7 +5483,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5432
5483
|
speed?: number | undefined;
|
|
5433
5484
|
instruction?: string | undefined;
|
|
5434
5485
|
} | undefined;
|
|
5435
|
-
provider?:
|
|
5486
|
+
provider?: string | undefined;
|
|
5487
|
+
model?: string | undefined;
|
|
5436
5488
|
}, {
|
|
5437
5489
|
voiceId: string;
|
|
5438
5490
|
displayName?: Record<string, string> | undefined;
|
|
@@ -5440,10 +5492,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5440
5492
|
speed?: number | undefined;
|
|
5441
5493
|
instruction?: string | undefined;
|
|
5442
5494
|
} | undefined;
|
|
5443
|
-
provider?:
|
|
5495
|
+
provider?: string | undefined;
|
|
5496
|
+
model?: string | undefined;
|
|
5444
5497
|
}>>;
|
|
5498
|
+
model: z.ZodOptional<z.ZodString>;
|
|
5445
5499
|
}, "strict", z.ZodTypeAny, {
|
|
5446
|
-
provider:
|
|
5500
|
+
provider: string;
|
|
5447
5501
|
speakers: Record<string, {
|
|
5448
5502
|
voiceId: string;
|
|
5449
5503
|
displayName?: Record<string, string> | undefined;
|
|
@@ -5451,8 +5505,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5451
5505
|
speed?: number | undefined;
|
|
5452
5506
|
instruction?: string | undefined;
|
|
5453
5507
|
} | undefined;
|
|
5454
|
-
provider?:
|
|
5508
|
+
provider?: string | undefined;
|
|
5509
|
+
model?: string | undefined;
|
|
5455
5510
|
}>;
|
|
5511
|
+
model?: string | undefined;
|
|
5456
5512
|
}, {
|
|
5457
5513
|
speakers: Record<string, {
|
|
5458
5514
|
voiceId: string;
|
|
@@ -5461,12 +5517,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5461
5517
|
speed?: number | undefined;
|
|
5462
5518
|
instruction?: string | undefined;
|
|
5463
5519
|
} | undefined;
|
|
5464
|
-
provider?:
|
|
5520
|
+
provider?: string | undefined;
|
|
5521
|
+
model?: string | undefined;
|
|
5465
5522
|
}>;
|
|
5466
|
-
provider?:
|
|
5523
|
+
provider?: string | undefined;
|
|
5524
|
+
model?: string | undefined;
|
|
5467
5525
|
}>>;
|
|
5468
5526
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
5469
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
5527
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
5470
5528
|
model: z.ZodOptional<z.ZodString>;
|
|
5471
5529
|
style: z.ZodOptional<z.ZodString>;
|
|
5472
5530
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -5550,9 +5608,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5550
5608
|
prompt: string;
|
|
5551
5609
|
}>]>>>;
|
|
5552
5610
|
}, "strict", z.ZodTypeAny, {
|
|
5553
|
-
provider:
|
|
5554
|
-
style?: string | undefined;
|
|
5611
|
+
provider: string;
|
|
5555
5612
|
model?: string | undefined;
|
|
5613
|
+
style?: string | undefined;
|
|
5556
5614
|
moderation?: string | undefined;
|
|
5557
5615
|
images?: Record<string, {
|
|
5558
5616
|
type: "image";
|
|
@@ -5574,9 +5632,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5574
5632
|
prompt: string;
|
|
5575
5633
|
}> | undefined;
|
|
5576
5634
|
}, {
|
|
5577
|
-
provider?:
|
|
5578
|
-
style?: string | undefined;
|
|
5635
|
+
provider?: string | undefined;
|
|
5579
5636
|
model?: string | undefined;
|
|
5637
|
+
style?: string | undefined;
|
|
5580
5638
|
moderation?: string | undefined;
|
|
5581
5639
|
images?: Record<string, {
|
|
5582
5640
|
type: "image";
|
|
@@ -5599,7 +5657,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5599
5657
|
}> | undefined;
|
|
5600
5658
|
}>>;
|
|
5601
5659
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
5602
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
5660
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
5603
5661
|
model: z.ZodOptional<z.ZodString>;
|
|
5604
5662
|
transition: z.ZodOptional<z.ZodObject<{
|
|
5605
5663
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -5619,7 +5677,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5619
5677
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
5620
5678
|
}>>;
|
|
5621
5679
|
}, "strict", z.ZodTypeAny, {
|
|
5622
|
-
provider?:
|
|
5680
|
+
provider?: string | undefined;
|
|
5623
5681
|
model?: string | undefined;
|
|
5624
5682
|
fillOption?: {
|
|
5625
5683
|
style: "aspectFit" | "aspectFill";
|
|
@@ -5629,7 +5687,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5629
5687
|
duration: number;
|
|
5630
5688
|
} | undefined;
|
|
5631
5689
|
}, {
|
|
5632
|
-
provider?:
|
|
5690
|
+
provider?: string | undefined;
|
|
5633
5691
|
model?: string | undefined;
|
|
5634
5692
|
fillOption?: {
|
|
5635
5693
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -5642,12 +5700,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5642
5700
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
5643
5701
|
model: z.ZodOptional<z.ZodString>;
|
|
5644
5702
|
} & {
|
|
5645
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
5703
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
5646
5704
|
}, "strict", z.ZodTypeAny, {
|
|
5647
|
-
provider:
|
|
5705
|
+
provider: string;
|
|
5648
5706
|
model?: string | undefined;
|
|
5649
5707
|
}, {
|
|
5650
|
-
provider?:
|
|
5708
|
+
provider?: string | undefined;
|
|
5651
5709
|
model?: string | undefined;
|
|
5652
5710
|
}>>;
|
|
5653
5711
|
textSlideParams: z.ZodOptional<z.ZodObject<{
|
|
@@ -6044,8 +6102,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6044
6102
|
path: string;
|
|
6045
6103
|
kind: "path";
|
|
6046
6104
|
}>]>;
|
|
6047
|
-
} & {
|
|
6048
|
-
mixAudio: z.ZodDefault<z.ZodNumber>;
|
|
6049
6105
|
}, "strict", z.ZodTypeAny, {
|
|
6050
6106
|
type: "movie";
|
|
6051
6107
|
source: {
|
|
@@ -6061,7 +6117,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6061
6117
|
path: string;
|
|
6062
6118
|
kind: "path";
|
|
6063
6119
|
};
|
|
6064
|
-
mixAudio: number;
|
|
6065
6120
|
}, {
|
|
6066
6121
|
type: "movie";
|
|
6067
6122
|
source: {
|
|
@@ -6077,7 +6132,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6077
6132
|
path: string;
|
|
6078
6133
|
kind: "path";
|
|
6079
6134
|
};
|
|
6080
|
-
mixAudio?: number | undefined;
|
|
6081
6135
|
}>, z.ZodObject<{
|
|
6082
6136
|
type: z.ZodLiteral<"textSlide">;
|
|
6083
6137
|
slide: z.ZodObject<{
|
|
@@ -6303,7 +6357,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6303
6357
|
}>]>>;
|
|
6304
6358
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
6305
6359
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
6306
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
6360
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
6307
6361
|
model: z.ZodOptional<z.ZodString>;
|
|
6308
6362
|
style: z.ZodOptional<z.ZodString>;
|
|
6309
6363
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -6387,9 +6441,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6387
6441
|
prompt: string;
|
|
6388
6442
|
}>]>>>;
|
|
6389
6443
|
}, "strict", z.ZodTypeAny, {
|
|
6390
|
-
provider:
|
|
6391
|
-
style?: string | undefined;
|
|
6444
|
+
provider: string;
|
|
6392
6445
|
model?: string | undefined;
|
|
6446
|
+
style?: string | undefined;
|
|
6393
6447
|
moderation?: string | undefined;
|
|
6394
6448
|
images?: Record<string, {
|
|
6395
6449
|
type: "image";
|
|
@@ -6411,9 +6465,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6411
6465
|
prompt: string;
|
|
6412
6466
|
}> | undefined;
|
|
6413
6467
|
}, {
|
|
6414
|
-
provider?:
|
|
6415
|
-
style?: string | undefined;
|
|
6468
|
+
provider?: string | undefined;
|
|
6416
6469
|
model?: string | undefined;
|
|
6470
|
+
style?: string | undefined;
|
|
6417
6471
|
moderation?: string | undefined;
|
|
6418
6472
|
images?: Record<string, {
|
|
6419
6473
|
type: "image";
|
|
@@ -6437,12 +6491,16 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6437
6491
|
}>>;
|
|
6438
6492
|
audioParams: z.ZodOptional<z.ZodObject<{
|
|
6439
6493
|
padding: z.ZodOptional<z.ZodNumber>;
|
|
6494
|
+
movieVolume: z.ZodDefault<z.ZodNumber>;
|
|
6440
6495
|
}, "strict", z.ZodTypeAny, {
|
|
6496
|
+
movieVolume: number;
|
|
6441
6497
|
padding?: number | undefined;
|
|
6442
6498
|
}, {
|
|
6443
6499
|
padding?: number | undefined;
|
|
6500
|
+
movieVolume?: number | undefined;
|
|
6444
6501
|
}>>;
|
|
6445
6502
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
6503
|
+
model: z.ZodOptional<z.ZodString>;
|
|
6446
6504
|
fillOption: z.ZodOptional<z.ZodObject<{
|
|
6447
6505
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
6448
6506
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6453,11 +6511,13 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6453
6511
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
6454
6512
|
}, "strip", z.ZodTypeAny, {
|
|
6455
6513
|
speed?: number | undefined;
|
|
6514
|
+
model?: string | undefined;
|
|
6456
6515
|
fillOption?: {
|
|
6457
6516
|
style: "aspectFit" | "aspectFill";
|
|
6458
6517
|
} | undefined;
|
|
6459
6518
|
}, {
|
|
6460
6519
|
speed?: number | undefined;
|
|
6520
|
+
model?: string | undefined;
|
|
6461
6521
|
fillOption?: {
|
|
6462
6522
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
6463
6523
|
} | undefined;
|
|
@@ -6574,6 +6634,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6574
6634
|
path: string;
|
|
6575
6635
|
kind: "path";
|
|
6576
6636
|
};
|
|
6637
|
+
} | {
|
|
6638
|
+
type: "movie";
|
|
6639
|
+
source: {
|
|
6640
|
+
url: string;
|
|
6641
|
+
kind: "url";
|
|
6642
|
+
} | {
|
|
6643
|
+
kind: "base64";
|
|
6644
|
+
data: string;
|
|
6645
|
+
} | {
|
|
6646
|
+
text: string;
|
|
6647
|
+
kind: "text";
|
|
6648
|
+
} | {
|
|
6649
|
+
path: string;
|
|
6650
|
+
kind: "path";
|
|
6651
|
+
};
|
|
6577
6652
|
} | {
|
|
6578
6653
|
type: "textSlide";
|
|
6579
6654
|
slide: {
|
|
@@ -6611,22 +6686,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6611
6686
|
} | {
|
|
6612
6687
|
type: "voice_over";
|
|
6613
6688
|
startAt?: number | undefined;
|
|
6614
|
-
} | {
|
|
6615
|
-
type: "movie";
|
|
6616
|
-
source: {
|
|
6617
|
-
url: string;
|
|
6618
|
-
kind: "url";
|
|
6619
|
-
} | {
|
|
6620
|
-
kind: "base64";
|
|
6621
|
-
data: string;
|
|
6622
|
-
} | {
|
|
6623
|
-
text: string;
|
|
6624
|
-
kind: "text";
|
|
6625
|
-
} | {
|
|
6626
|
-
path: string;
|
|
6627
|
-
kind: "path";
|
|
6628
|
-
};
|
|
6629
|
-
mixAudio: number;
|
|
6630
6689
|
} | undefined;
|
|
6631
6690
|
id?: string | undefined;
|
|
6632
6691
|
audio?: {
|
|
@@ -6651,9 +6710,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6651
6710
|
imagePrompt?: string | undefined;
|
|
6652
6711
|
description?: string | undefined;
|
|
6653
6712
|
imageParams?: {
|
|
6654
|
-
provider:
|
|
6655
|
-
style?: string | undefined;
|
|
6713
|
+
provider: string;
|
|
6656
6714
|
model?: string | undefined;
|
|
6715
|
+
style?: string | undefined;
|
|
6657
6716
|
moderation?: string | undefined;
|
|
6658
6717
|
images?: Record<string, {
|
|
6659
6718
|
type: "image";
|
|
@@ -6676,10 +6735,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6676
6735
|
}> | undefined;
|
|
6677
6736
|
} | undefined;
|
|
6678
6737
|
audioParams?: {
|
|
6738
|
+
movieVolume: number;
|
|
6679
6739
|
padding?: number | undefined;
|
|
6680
6740
|
} | undefined;
|
|
6681
6741
|
movieParams?: {
|
|
6682
6742
|
speed?: number | undefined;
|
|
6743
|
+
model?: string | undefined;
|
|
6683
6744
|
fillOption?: {
|
|
6684
6745
|
style: "aspectFit" | "aspectFill";
|
|
6685
6746
|
} | undefined;
|
|
@@ -6760,6 +6821,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6760
6821
|
path: string;
|
|
6761
6822
|
kind: "path";
|
|
6762
6823
|
};
|
|
6824
|
+
} | {
|
|
6825
|
+
type: "movie";
|
|
6826
|
+
source: {
|
|
6827
|
+
url: string;
|
|
6828
|
+
kind: "url";
|
|
6829
|
+
} | {
|
|
6830
|
+
kind: "base64";
|
|
6831
|
+
data: string;
|
|
6832
|
+
} | {
|
|
6833
|
+
text: string;
|
|
6834
|
+
kind: "text";
|
|
6835
|
+
} | {
|
|
6836
|
+
path: string;
|
|
6837
|
+
kind: "path";
|
|
6838
|
+
};
|
|
6763
6839
|
} | {
|
|
6764
6840
|
type: "textSlide";
|
|
6765
6841
|
slide: {
|
|
@@ -6797,22 +6873,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6797
6873
|
} | {
|
|
6798
6874
|
type: "voice_over";
|
|
6799
6875
|
startAt?: number | undefined;
|
|
6800
|
-
} | {
|
|
6801
|
-
type: "movie";
|
|
6802
|
-
source: {
|
|
6803
|
-
url: string;
|
|
6804
|
-
kind: "url";
|
|
6805
|
-
} | {
|
|
6806
|
-
kind: "base64";
|
|
6807
|
-
data: string;
|
|
6808
|
-
} | {
|
|
6809
|
-
text: string;
|
|
6810
|
-
kind: "text";
|
|
6811
|
-
} | {
|
|
6812
|
-
path: string;
|
|
6813
|
-
kind: "path";
|
|
6814
|
-
};
|
|
6815
|
-
mixAudio?: number | undefined;
|
|
6816
6876
|
} | undefined;
|
|
6817
6877
|
id?: string | undefined;
|
|
6818
6878
|
audio?: {
|
|
@@ -6838,9 +6898,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6838
6898
|
speaker?: string | undefined;
|
|
6839
6899
|
description?: string | undefined;
|
|
6840
6900
|
imageParams?: {
|
|
6841
|
-
provider?:
|
|
6842
|
-
style?: string | undefined;
|
|
6901
|
+
provider?: string | undefined;
|
|
6843
6902
|
model?: string | undefined;
|
|
6903
|
+
style?: string | undefined;
|
|
6844
6904
|
moderation?: string | undefined;
|
|
6845
6905
|
images?: Record<string, {
|
|
6846
6906
|
type: "image";
|
|
@@ -6864,9 +6924,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6864
6924
|
} | undefined;
|
|
6865
6925
|
audioParams?: {
|
|
6866
6926
|
padding?: number | undefined;
|
|
6927
|
+
movieVolume?: number | undefined;
|
|
6867
6928
|
} | undefined;
|
|
6868
6929
|
movieParams?: {
|
|
6869
6930
|
speed?: number | undefined;
|
|
6931
|
+
model?: string | undefined;
|
|
6870
6932
|
fillOption?: {
|
|
6871
6933
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
6872
6934
|
} | undefined;
|
|
@@ -6924,7 +6986,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6924
6986
|
height: number;
|
|
6925
6987
|
};
|
|
6926
6988
|
speechParams: {
|
|
6927
|
-
provider:
|
|
6989
|
+
provider: string;
|
|
6928
6990
|
speakers: Record<string, {
|
|
6929
6991
|
voiceId: string;
|
|
6930
6992
|
displayName?: Record<string, string> | undefined;
|
|
@@ -6932,8 +6994,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6932
6994
|
speed?: number | undefined;
|
|
6933
6995
|
instruction?: string | undefined;
|
|
6934
6996
|
} | undefined;
|
|
6935
|
-
provider?:
|
|
6997
|
+
provider?: string | undefined;
|
|
6998
|
+
model?: string | undefined;
|
|
6936
6999
|
}>;
|
|
7000
|
+
model?: string | undefined;
|
|
6937
7001
|
};
|
|
6938
7002
|
beats: {
|
|
6939
7003
|
text: string;
|
|
@@ -6994,6 +7058,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6994
7058
|
path: string;
|
|
6995
7059
|
kind: "path";
|
|
6996
7060
|
};
|
|
7061
|
+
} | {
|
|
7062
|
+
type: "movie";
|
|
7063
|
+
source: {
|
|
7064
|
+
url: string;
|
|
7065
|
+
kind: "url";
|
|
7066
|
+
} | {
|
|
7067
|
+
kind: "base64";
|
|
7068
|
+
data: string;
|
|
7069
|
+
} | {
|
|
7070
|
+
text: string;
|
|
7071
|
+
kind: "text";
|
|
7072
|
+
} | {
|
|
7073
|
+
path: string;
|
|
7074
|
+
kind: "path";
|
|
7075
|
+
};
|
|
6997
7076
|
} | {
|
|
6998
7077
|
type: "textSlide";
|
|
6999
7078
|
slide: {
|
|
@@ -7031,22 +7110,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7031
7110
|
} | {
|
|
7032
7111
|
type: "voice_over";
|
|
7033
7112
|
startAt?: number | undefined;
|
|
7034
|
-
} | {
|
|
7035
|
-
type: "movie";
|
|
7036
|
-
source: {
|
|
7037
|
-
url: string;
|
|
7038
|
-
kind: "url";
|
|
7039
|
-
} | {
|
|
7040
|
-
kind: "base64";
|
|
7041
|
-
data: string;
|
|
7042
|
-
} | {
|
|
7043
|
-
text: string;
|
|
7044
|
-
kind: "text";
|
|
7045
|
-
} | {
|
|
7046
|
-
path: string;
|
|
7047
|
-
kind: "path";
|
|
7048
|
-
};
|
|
7049
|
-
mixAudio: number;
|
|
7050
7113
|
} | undefined;
|
|
7051
7114
|
id?: string | undefined;
|
|
7052
7115
|
audio?: {
|
|
@@ -7071,9 +7134,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7071
7134
|
imagePrompt?: string | undefined;
|
|
7072
7135
|
description?: string | undefined;
|
|
7073
7136
|
imageParams?: {
|
|
7074
|
-
provider:
|
|
7075
|
-
style?: string | undefined;
|
|
7137
|
+
provider: string;
|
|
7076
7138
|
model?: string | undefined;
|
|
7139
|
+
style?: string | undefined;
|
|
7077
7140
|
moderation?: string | undefined;
|
|
7078
7141
|
images?: Record<string, {
|
|
7079
7142
|
type: "image";
|
|
@@ -7096,10 +7159,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7096
7159
|
}> | undefined;
|
|
7097
7160
|
} | undefined;
|
|
7098
7161
|
audioParams?: {
|
|
7162
|
+
movieVolume: number;
|
|
7099
7163
|
padding?: number | undefined;
|
|
7100
7164
|
} | undefined;
|
|
7101
7165
|
movieParams?: {
|
|
7102
7166
|
speed?: number | undefined;
|
|
7167
|
+
model?: string | undefined;
|
|
7103
7168
|
fillOption?: {
|
|
7104
7169
|
style: "aspectFit" | "aspectFill";
|
|
7105
7170
|
} | undefined;
|
|
@@ -7127,9 +7192,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7127
7192
|
title?: string | undefined;
|
|
7128
7193
|
description?: string | undefined;
|
|
7129
7194
|
imageParams?: {
|
|
7130
|
-
provider:
|
|
7131
|
-
style?: string | undefined;
|
|
7195
|
+
provider: string;
|
|
7132
7196
|
model?: string | undefined;
|
|
7197
|
+
style?: string | undefined;
|
|
7133
7198
|
moderation?: string | undefined;
|
|
7134
7199
|
images?: Record<string, {
|
|
7135
7200
|
type: "image";
|
|
@@ -7152,7 +7217,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7152
7217
|
}> | undefined;
|
|
7153
7218
|
} | undefined;
|
|
7154
7219
|
movieParams?: {
|
|
7155
|
-
provider?:
|
|
7220
|
+
provider?: string | undefined;
|
|
7156
7221
|
model?: string | undefined;
|
|
7157
7222
|
fillOption?: {
|
|
7158
7223
|
style: "aspectFit" | "aspectFill";
|
|
@@ -7163,7 +7228,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7163
7228
|
} | undefined;
|
|
7164
7229
|
} | undefined;
|
|
7165
7230
|
htmlImageParams?: {
|
|
7166
|
-
provider:
|
|
7231
|
+
provider: string;
|
|
7167
7232
|
model?: string | undefined;
|
|
7168
7233
|
} | undefined;
|
|
7169
7234
|
textSlideParams?: {
|
|
@@ -7244,6 +7309,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7244
7309
|
path: string;
|
|
7245
7310
|
kind: "path";
|
|
7246
7311
|
};
|
|
7312
|
+
} | {
|
|
7313
|
+
type: "movie";
|
|
7314
|
+
source: {
|
|
7315
|
+
url: string;
|
|
7316
|
+
kind: "url";
|
|
7317
|
+
} | {
|
|
7318
|
+
kind: "base64";
|
|
7319
|
+
data: string;
|
|
7320
|
+
} | {
|
|
7321
|
+
text: string;
|
|
7322
|
+
kind: "text";
|
|
7323
|
+
} | {
|
|
7324
|
+
path: string;
|
|
7325
|
+
kind: "path";
|
|
7326
|
+
};
|
|
7247
7327
|
} | {
|
|
7248
7328
|
type: "textSlide";
|
|
7249
7329
|
slide: {
|
|
@@ -7281,22 +7361,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7281
7361
|
} | {
|
|
7282
7362
|
type: "voice_over";
|
|
7283
7363
|
startAt?: number | undefined;
|
|
7284
|
-
} | {
|
|
7285
|
-
type: "movie";
|
|
7286
|
-
source: {
|
|
7287
|
-
url: string;
|
|
7288
|
-
kind: "url";
|
|
7289
|
-
} | {
|
|
7290
|
-
kind: "base64";
|
|
7291
|
-
data: string;
|
|
7292
|
-
} | {
|
|
7293
|
-
text: string;
|
|
7294
|
-
kind: "text";
|
|
7295
|
-
} | {
|
|
7296
|
-
path: string;
|
|
7297
|
-
kind: "path";
|
|
7298
|
-
};
|
|
7299
|
-
mixAudio?: number | undefined;
|
|
7300
7364
|
} | undefined;
|
|
7301
7365
|
id?: string | undefined;
|
|
7302
7366
|
audio?: {
|
|
@@ -7322,9 +7386,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7322
7386
|
speaker?: string | undefined;
|
|
7323
7387
|
description?: string | undefined;
|
|
7324
7388
|
imageParams?: {
|
|
7325
|
-
provider?:
|
|
7326
|
-
style?: string | undefined;
|
|
7389
|
+
provider?: string | undefined;
|
|
7327
7390
|
model?: string | undefined;
|
|
7391
|
+
style?: string | undefined;
|
|
7328
7392
|
moderation?: string | undefined;
|
|
7329
7393
|
images?: Record<string, {
|
|
7330
7394
|
type: "image";
|
|
@@ -7348,9 +7412,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7348
7412
|
} | undefined;
|
|
7349
7413
|
audioParams?: {
|
|
7350
7414
|
padding?: number | undefined;
|
|
7415
|
+
movieVolume?: number | undefined;
|
|
7351
7416
|
} | undefined;
|
|
7352
7417
|
movieParams?: {
|
|
7353
7418
|
speed?: number | undefined;
|
|
7419
|
+
model?: string | undefined;
|
|
7354
7420
|
fillOption?: {
|
|
7355
7421
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
7356
7422
|
} | undefined;
|
|
@@ -7378,9 +7444,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7378
7444
|
title?: string | undefined;
|
|
7379
7445
|
description?: string | undefined;
|
|
7380
7446
|
imageParams?: {
|
|
7381
|
-
provider?:
|
|
7382
|
-
style?: string | undefined;
|
|
7447
|
+
provider?: string | undefined;
|
|
7383
7448
|
model?: string | undefined;
|
|
7449
|
+
style?: string | undefined;
|
|
7384
7450
|
moderation?: string | undefined;
|
|
7385
7451
|
images?: Record<string, {
|
|
7386
7452
|
type: "image";
|
|
@@ -7425,7 +7491,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7425
7491
|
suppressSpeech?: boolean | undefined;
|
|
7426
7492
|
} | undefined;
|
|
7427
7493
|
movieParams?: {
|
|
7428
|
-
provider?:
|
|
7494
|
+
provider?: string | undefined;
|
|
7429
7495
|
model?: string | undefined;
|
|
7430
7496
|
fillOption?: {
|
|
7431
7497
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -7436,7 +7502,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7436
7502
|
} | undefined;
|
|
7437
7503
|
} | undefined;
|
|
7438
7504
|
htmlImageParams?: {
|
|
7439
|
-
provider?:
|
|
7505
|
+
provider?: string | undefined;
|
|
7440
7506
|
model?: string | undefined;
|
|
7441
7507
|
} | undefined;
|
|
7442
7508
|
textSlideParams?: {
|
|
@@ -7458,9 +7524,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7458
7524
|
speed?: number | undefined;
|
|
7459
7525
|
instruction?: string | undefined;
|
|
7460
7526
|
} | undefined;
|
|
7461
|
-
provider?:
|
|
7527
|
+
provider?: string | undefined;
|
|
7528
|
+
model?: string | undefined;
|
|
7462
7529
|
}>;
|
|
7463
|
-
provider?:
|
|
7530
|
+
provider?: string | undefined;
|
|
7531
|
+
model?: string | undefined;
|
|
7464
7532
|
} | undefined;
|
|
7465
7533
|
references?: {
|
|
7466
7534
|
url: string;
|
|
@@ -7479,6 +7547,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7479
7547
|
audioDuration: z.ZodOptional<z.ZodNumber>;
|
|
7480
7548
|
movieDuration: z.ZodOptional<z.ZodNumber>;
|
|
7481
7549
|
silenceDuration: z.ZodOptional<z.ZodNumber>;
|
|
7550
|
+
hasMovieAudio: z.ZodOptional<z.ZodBoolean>;
|
|
7482
7551
|
audioFile: z.ZodOptional<z.ZodString>;
|
|
7483
7552
|
imageFile: z.ZodOptional<z.ZodString>;
|
|
7484
7553
|
movieFile: z.ZodOptional<z.ZodString>;
|
|
@@ -7490,6 +7559,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7490
7559
|
audioDuration?: number | undefined;
|
|
7491
7560
|
movieDuration?: number | undefined;
|
|
7492
7561
|
silenceDuration?: number | undefined;
|
|
7562
|
+
hasMovieAudio?: boolean | undefined;
|
|
7493
7563
|
audioFile?: string | undefined;
|
|
7494
7564
|
imageFile?: string | undefined;
|
|
7495
7565
|
movieFile?: string | undefined;
|
|
@@ -7501,6 +7571,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7501
7571
|
audioDuration?: number | undefined;
|
|
7502
7572
|
movieDuration?: number | undefined;
|
|
7503
7573
|
silenceDuration?: number | undefined;
|
|
7574
|
+
hasMovieAudio?: boolean | undefined;
|
|
7504
7575
|
audioFile?: string | undefined;
|
|
7505
7576
|
imageFile?: string | undefined;
|
|
7506
7577
|
movieFile?: string | undefined;
|
|
@@ -7514,6 +7585,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7514
7585
|
audioDuration?: number | undefined;
|
|
7515
7586
|
movieDuration?: number | undefined;
|
|
7516
7587
|
silenceDuration?: number | undefined;
|
|
7588
|
+
hasMovieAudio?: boolean | undefined;
|
|
7517
7589
|
audioFile?: string | undefined;
|
|
7518
7590
|
imageFile?: string | undefined;
|
|
7519
7591
|
movieFile?: string | undefined;
|
|
@@ -7551,7 +7623,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7551
7623
|
height: number;
|
|
7552
7624
|
};
|
|
7553
7625
|
speechParams: {
|
|
7554
|
-
provider:
|
|
7626
|
+
provider: string;
|
|
7555
7627
|
speakers: Record<string, {
|
|
7556
7628
|
voiceId: string;
|
|
7557
7629
|
displayName?: Record<string, string> | undefined;
|
|
@@ -7559,8 +7631,10 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7559
7631
|
speed?: number | undefined;
|
|
7560
7632
|
instruction?: string | undefined;
|
|
7561
7633
|
} | undefined;
|
|
7562
|
-
provider?:
|
|
7634
|
+
provider?: string | undefined;
|
|
7635
|
+
model?: string | undefined;
|
|
7563
7636
|
}>;
|
|
7637
|
+
model?: string | undefined;
|
|
7564
7638
|
};
|
|
7565
7639
|
beats: {
|
|
7566
7640
|
text: string;
|
|
@@ -7621,6 +7695,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7621
7695
|
path: string;
|
|
7622
7696
|
kind: "path";
|
|
7623
7697
|
};
|
|
7698
|
+
} | {
|
|
7699
|
+
type: "movie";
|
|
7700
|
+
source: {
|
|
7701
|
+
url: string;
|
|
7702
|
+
kind: "url";
|
|
7703
|
+
} | {
|
|
7704
|
+
kind: "base64";
|
|
7705
|
+
data: string;
|
|
7706
|
+
} | {
|
|
7707
|
+
text: string;
|
|
7708
|
+
kind: "text";
|
|
7709
|
+
} | {
|
|
7710
|
+
path: string;
|
|
7711
|
+
kind: "path";
|
|
7712
|
+
};
|
|
7624
7713
|
} | {
|
|
7625
7714
|
type: "textSlide";
|
|
7626
7715
|
slide: {
|
|
@@ -7658,22 +7747,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7658
7747
|
} | {
|
|
7659
7748
|
type: "voice_over";
|
|
7660
7749
|
startAt?: number | undefined;
|
|
7661
|
-
} | {
|
|
7662
|
-
type: "movie";
|
|
7663
|
-
source: {
|
|
7664
|
-
url: string;
|
|
7665
|
-
kind: "url";
|
|
7666
|
-
} | {
|
|
7667
|
-
kind: "base64";
|
|
7668
|
-
data: string;
|
|
7669
|
-
} | {
|
|
7670
|
-
text: string;
|
|
7671
|
-
kind: "text";
|
|
7672
|
-
} | {
|
|
7673
|
-
path: string;
|
|
7674
|
-
kind: "path";
|
|
7675
|
-
};
|
|
7676
|
-
mixAudio: number;
|
|
7677
7750
|
} | undefined;
|
|
7678
7751
|
id?: string | undefined;
|
|
7679
7752
|
audio?: {
|
|
@@ -7698,9 +7771,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7698
7771
|
imagePrompt?: string | undefined;
|
|
7699
7772
|
description?: string | undefined;
|
|
7700
7773
|
imageParams?: {
|
|
7701
|
-
provider:
|
|
7702
|
-
style?: string | undefined;
|
|
7774
|
+
provider: string;
|
|
7703
7775
|
model?: string | undefined;
|
|
7776
|
+
style?: string | undefined;
|
|
7704
7777
|
moderation?: string | undefined;
|
|
7705
7778
|
images?: Record<string, {
|
|
7706
7779
|
type: "image";
|
|
@@ -7723,10 +7796,12 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7723
7796
|
}> | undefined;
|
|
7724
7797
|
} | undefined;
|
|
7725
7798
|
audioParams?: {
|
|
7799
|
+
movieVolume: number;
|
|
7726
7800
|
padding?: number | undefined;
|
|
7727
7801
|
} | undefined;
|
|
7728
7802
|
movieParams?: {
|
|
7729
7803
|
speed?: number | undefined;
|
|
7804
|
+
model?: string | undefined;
|
|
7730
7805
|
fillOption?: {
|
|
7731
7806
|
style: "aspectFit" | "aspectFill";
|
|
7732
7807
|
} | undefined;
|
|
@@ -7754,9 +7829,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7754
7829
|
title?: string | undefined;
|
|
7755
7830
|
description?: string | undefined;
|
|
7756
7831
|
imageParams?: {
|
|
7757
|
-
provider:
|
|
7758
|
-
style?: string | undefined;
|
|
7832
|
+
provider: string;
|
|
7759
7833
|
model?: string | undefined;
|
|
7834
|
+
style?: string | undefined;
|
|
7760
7835
|
moderation?: string | undefined;
|
|
7761
7836
|
images?: Record<string, {
|
|
7762
7837
|
type: "image";
|
|
@@ -7779,7 +7854,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7779
7854
|
}> | undefined;
|
|
7780
7855
|
} | undefined;
|
|
7781
7856
|
movieParams?: {
|
|
7782
|
-
provider?:
|
|
7857
|
+
provider?: string | undefined;
|
|
7783
7858
|
model?: string | undefined;
|
|
7784
7859
|
fillOption?: {
|
|
7785
7860
|
style: "aspectFit" | "aspectFill";
|
|
@@ -7790,7 +7865,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7790
7865
|
} | undefined;
|
|
7791
7866
|
} | undefined;
|
|
7792
7867
|
htmlImageParams?: {
|
|
7793
|
-
provider:
|
|
7868
|
+
provider: string;
|
|
7794
7869
|
model?: string | undefined;
|
|
7795
7870
|
} | undefined;
|
|
7796
7871
|
textSlideParams?: {
|
|
@@ -7818,6 +7893,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7818
7893
|
audioDuration?: number | undefined;
|
|
7819
7894
|
movieDuration?: number | undefined;
|
|
7820
7895
|
silenceDuration?: number | undefined;
|
|
7896
|
+
hasMovieAudio?: boolean | undefined;
|
|
7821
7897
|
audioFile?: string | undefined;
|
|
7822
7898
|
imageFile?: string | undefined;
|
|
7823
7899
|
movieFile?: string | undefined;
|
|
@@ -7886,6 +7962,21 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7886
7962
|
path: string;
|
|
7887
7963
|
kind: "path";
|
|
7888
7964
|
};
|
|
7965
|
+
} | {
|
|
7966
|
+
type: "movie";
|
|
7967
|
+
source: {
|
|
7968
|
+
url: string;
|
|
7969
|
+
kind: "url";
|
|
7970
|
+
} | {
|
|
7971
|
+
kind: "base64";
|
|
7972
|
+
data: string;
|
|
7973
|
+
} | {
|
|
7974
|
+
text: string;
|
|
7975
|
+
kind: "text";
|
|
7976
|
+
} | {
|
|
7977
|
+
path: string;
|
|
7978
|
+
kind: "path";
|
|
7979
|
+
};
|
|
7889
7980
|
} | {
|
|
7890
7981
|
type: "textSlide";
|
|
7891
7982
|
slide: {
|
|
@@ -7923,22 +8014,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7923
8014
|
} | {
|
|
7924
8015
|
type: "voice_over";
|
|
7925
8016
|
startAt?: number | undefined;
|
|
7926
|
-
} | {
|
|
7927
|
-
type: "movie";
|
|
7928
|
-
source: {
|
|
7929
|
-
url: string;
|
|
7930
|
-
kind: "url";
|
|
7931
|
-
} | {
|
|
7932
|
-
kind: "base64";
|
|
7933
|
-
data: string;
|
|
7934
|
-
} | {
|
|
7935
|
-
text: string;
|
|
7936
|
-
kind: "text";
|
|
7937
|
-
} | {
|
|
7938
|
-
path: string;
|
|
7939
|
-
kind: "path";
|
|
7940
|
-
};
|
|
7941
|
-
mixAudio?: number | undefined;
|
|
7942
8017
|
} | undefined;
|
|
7943
8018
|
id?: string | undefined;
|
|
7944
8019
|
audio?: {
|
|
@@ -7964,9 +8039,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7964
8039
|
speaker?: string | undefined;
|
|
7965
8040
|
description?: string | undefined;
|
|
7966
8041
|
imageParams?: {
|
|
7967
|
-
provider?:
|
|
7968
|
-
style?: string | undefined;
|
|
8042
|
+
provider?: string | undefined;
|
|
7969
8043
|
model?: string | undefined;
|
|
8044
|
+
style?: string | undefined;
|
|
7970
8045
|
moderation?: string | undefined;
|
|
7971
8046
|
images?: Record<string, {
|
|
7972
8047
|
type: "image";
|
|
@@ -7990,9 +8065,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7990
8065
|
} | undefined;
|
|
7991
8066
|
audioParams?: {
|
|
7992
8067
|
padding?: number | undefined;
|
|
8068
|
+
movieVolume?: number | undefined;
|
|
7993
8069
|
} | undefined;
|
|
7994
8070
|
movieParams?: {
|
|
7995
8071
|
speed?: number | undefined;
|
|
8072
|
+
model?: string | undefined;
|
|
7996
8073
|
fillOption?: {
|
|
7997
8074
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
7998
8075
|
} | undefined;
|
|
@@ -8020,9 +8097,9 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8020
8097
|
title?: string | undefined;
|
|
8021
8098
|
description?: string | undefined;
|
|
8022
8099
|
imageParams?: {
|
|
8023
|
-
provider?:
|
|
8024
|
-
style?: string | undefined;
|
|
8100
|
+
provider?: string | undefined;
|
|
8025
8101
|
model?: string | undefined;
|
|
8102
|
+
style?: string | undefined;
|
|
8026
8103
|
moderation?: string | undefined;
|
|
8027
8104
|
images?: Record<string, {
|
|
8028
8105
|
type: "image";
|
|
@@ -8067,7 +8144,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8067
8144
|
suppressSpeech?: boolean | undefined;
|
|
8068
8145
|
} | undefined;
|
|
8069
8146
|
movieParams?: {
|
|
8070
|
-
provider?:
|
|
8147
|
+
provider?: string | undefined;
|
|
8071
8148
|
model?: string | undefined;
|
|
8072
8149
|
fillOption?: {
|
|
8073
8150
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8078,7 +8155,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8078
8155
|
} | undefined;
|
|
8079
8156
|
} | undefined;
|
|
8080
8157
|
htmlImageParams?: {
|
|
8081
|
-
provider?:
|
|
8158
|
+
provider?: string | undefined;
|
|
8082
8159
|
model?: string | undefined;
|
|
8083
8160
|
} | undefined;
|
|
8084
8161
|
textSlideParams?: {
|
|
@@ -8100,9 +8177,11 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8100
8177
|
speed?: number | undefined;
|
|
8101
8178
|
instruction?: string | undefined;
|
|
8102
8179
|
} | undefined;
|
|
8103
|
-
provider?:
|
|
8180
|
+
provider?: string | undefined;
|
|
8181
|
+
model?: string | undefined;
|
|
8104
8182
|
}>;
|
|
8105
|
-
provider?:
|
|
8183
|
+
provider?: string | undefined;
|
|
8184
|
+
model?: string | undefined;
|
|
8106
8185
|
} | undefined;
|
|
8107
8186
|
references?: {
|
|
8108
8187
|
url: string;
|
|
@@ -8142,7 +8221,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8142
8221
|
height: number;
|
|
8143
8222
|
}>>;
|
|
8144
8223
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
8145
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
8224
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
8146
8225
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8147
8226
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8148
8227
|
voiceId: z.ZodString;
|
|
@@ -8156,7 +8235,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8156
8235
|
speed?: number | undefined;
|
|
8157
8236
|
instruction?: string | undefined;
|
|
8158
8237
|
}>>;
|
|
8159
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
8238
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
8239
|
+
model: z.ZodOptional<z.ZodString>;
|
|
8160
8240
|
}, "strict", z.ZodTypeAny, {
|
|
8161
8241
|
voiceId: string;
|
|
8162
8242
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8164,7 +8244,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8164
8244
|
speed?: number | undefined;
|
|
8165
8245
|
instruction?: string | undefined;
|
|
8166
8246
|
} | undefined;
|
|
8167
|
-
provider?:
|
|
8247
|
+
provider?: string | undefined;
|
|
8248
|
+
model?: string | undefined;
|
|
8168
8249
|
}, {
|
|
8169
8250
|
voiceId: string;
|
|
8170
8251
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8172,10 +8253,12 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8172
8253
|
speed?: number | undefined;
|
|
8173
8254
|
instruction?: string | undefined;
|
|
8174
8255
|
} | undefined;
|
|
8175
|
-
provider?:
|
|
8256
|
+
provider?: string | undefined;
|
|
8257
|
+
model?: string | undefined;
|
|
8176
8258
|
}>>;
|
|
8259
|
+
model: z.ZodOptional<z.ZodString>;
|
|
8177
8260
|
}, "strict", z.ZodTypeAny, {
|
|
8178
|
-
provider:
|
|
8261
|
+
provider: string;
|
|
8179
8262
|
speakers: Record<string, {
|
|
8180
8263
|
voiceId: string;
|
|
8181
8264
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8183,8 +8266,10 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8183
8266
|
speed?: number | undefined;
|
|
8184
8267
|
instruction?: string | undefined;
|
|
8185
8268
|
} | undefined;
|
|
8186
|
-
provider?:
|
|
8269
|
+
provider?: string | undefined;
|
|
8270
|
+
model?: string | undefined;
|
|
8187
8271
|
}>;
|
|
8272
|
+
model?: string | undefined;
|
|
8188
8273
|
}, {
|
|
8189
8274
|
speakers: Record<string, {
|
|
8190
8275
|
voiceId: string;
|
|
@@ -8193,12 +8278,14 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8193
8278
|
speed?: number | undefined;
|
|
8194
8279
|
instruction?: string | undefined;
|
|
8195
8280
|
} | undefined;
|
|
8196
|
-
provider?:
|
|
8281
|
+
provider?: string | undefined;
|
|
8282
|
+
model?: string | undefined;
|
|
8197
8283
|
}>;
|
|
8198
|
-
provider?:
|
|
8284
|
+
provider?: string | undefined;
|
|
8285
|
+
model?: string | undefined;
|
|
8199
8286
|
}>>;
|
|
8200
8287
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
8201
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
8288
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
8202
8289
|
model: z.ZodOptional<z.ZodString>;
|
|
8203
8290
|
style: z.ZodOptional<z.ZodString>;
|
|
8204
8291
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -8282,9 +8369,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8282
8369
|
prompt: string;
|
|
8283
8370
|
}>]>>>;
|
|
8284
8371
|
}, "strict", z.ZodTypeAny, {
|
|
8285
|
-
provider:
|
|
8286
|
-
style?: string | undefined;
|
|
8372
|
+
provider: string;
|
|
8287
8373
|
model?: string | undefined;
|
|
8374
|
+
style?: string | undefined;
|
|
8288
8375
|
moderation?: string | undefined;
|
|
8289
8376
|
images?: Record<string, {
|
|
8290
8377
|
type: "image";
|
|
@@ -8306,9 +8393,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8306
8393
|
prompt: string;
|
|
8307
8394
|
}> | undefined;
|
|
8308
8395
|
}, {
|
|
8309
|
-
provider?:
|
|
8310
|
-
style?: string | undefined;
|
|
8396
|
+
provider?: string | undefined;
|
|
8311
8397
|
model?: string | undefined;
|
|
8398
|
+
style?: string | undefined;
|
|
8312
8399
|
moderation?: string | undefined;
|
|
8313
8400
|
images?: Record<string, {
|
|
8314
8401
|
type: "image";
|
|
@@ -8331,7 +8418,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8331
8418
|
}> | undefined;
|
|
8332
8419
|
}>>;
|
|
8333
8420
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
8334
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
8421
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
8335
8422
|
model: z.ZodOptional<z.ZodString>;
|
|
8336
8423
|
transition: z.ZodOptional<z.ZodObject<{
|
|
8337
8424
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -8351,7 +8438,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8351
8438
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
8352
8439
|
}>>;
|
|
8353
8440
|
}, "strict", z.ZodTypeAny, {
|
|
8354
|
-
provider?:
|
|
8441
|
+
provider?: string | undefined;
|
|
8355
8442
|
model?: string | undefined;
|
|
8356
8443
|
fillOption?: {
|
|
8357
8444
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8361,7 +8448,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8361
8448
|
duration: number;
|
|
8362
8449
|
} | undefined;
|
|
8363
8450
|
}, {
|
|
8364
|
-
provider?:
|
|
8451
|
+
provider?: string | undefined;
|
|
8365
8452
|
model?: string | undefined;
|
|
8366
8453
|
fillOption?: {
|
|
8367
8454
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8374,12 +8461,12 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8374
8461
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
8375
8462
|
model: z.ZodOptional<z.ZodString>;
|
|
8376
8463
|
} & {
|
|
8377
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
8464
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
8378
8465
|
}, "strict", z.ZodTypeAny, {
|
|
8379
|
-
provider:
|
|
8466
|
+
provider: string;
|
|
8380
8467
|
model?: string | undefined;
|
|
8381
8468
|
}, {
|
|
8382
|
-
provider?:
|
|
8469
|
+
provider?: string | undefined;
|
|
8383
8470
|
model?: string | undefined;
|
|
8384
8471
|
}>>;
|
|
8385
8472
|
textSlideParams: z.ZodOptional<z.ZodObject<{
|
|
@@ -8519,7 +8606,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8519
8606
|
height: number;
|
|
8520
8607
|
};
|
|
8521
8608
|
speechParams: {
|
|
8522
|
-
provider:
|
|
8609
|
+
provider: string;
|
|
8523
8610
|
speakers: Record<string, {
|
|
8524
8611
|
voiceId: string;
|
|
8525
8612
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8527,13 +8614,15 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8527
8614
|
speed?: number | undefined;
|
|
8528
8615
|
instruction?: string | undefined;
|
|
8529
8616
|
} | undefined;
|
|
8530
|
-
provider?:
|
|
8617
|
+
provider?: string | undefined;
|
|
8618
|
+
model?: string | undefined;
|
|
8531
8619
|
}>;
|
|
8620
|
+
model?: string | undefined;
|
|
8532
8621
|
};
|
|
8533
8622
|
imageParams?: {
|
|
8534
|
-
provider:
|
|
8535
|
-
style?: string | undefined;
|
|
8623
|
+
provider: string;
|
|
8536
8624
|
model?: string | undefined;
|
|
8625
|
+
style?: string | undefined;
|
|
8537
8626
|
moderation?: string | undefined;
|
|
8538
8627
|
images?: Record<string, {
|
|
8539
8628
|
type: "image";
|
|
@@ -8556,7 +8645,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8556
8645
|
}> | undefined;
|
|
8557
8646
|
} | undefined;
|
|
8558
8647
|
movieParams?: {
|
|
8559
|
-
provider?:
|
|
8648
|
+
provider?: string | undefined;
|
|
8560
8649
|
model?: string | undefined;
|
|
8561
8650
|
fillOption?: {
|
|
8562
8651
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8567,7 +8656,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8567
8656
|
} | undefined;
|
|
8568
8657
|
} | undefined;
|
|
8569
8658
|
htmlImageParams?: {
|
|
8570
|
-
provider:
|
|
8659
|
+
provider: string;
|
|
8571
8660
|
model?: string | undefined;
|
|
8572
8661
|
} | undefined;
|
|
8573
8662
|
textSlideParams?: {
|
|
@@ -8583,9 +8672,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8583
8672
|
credit?: "closing" | undefined;
|
|
8584
8673
|
};
|
|
8585
8674
|
imageParams?: {
|
|
8586
|
-
provider?:
|
|
8587
|
-
style?: string | undefined;
|
|
8675
|
+
provider?: string | undefined;
|
|
8588
8676
|
model?: string | undefined;
|
|
8677
|
+
style?: string | undefined;
|
|
8589
8678
|
moderation?: string | undefined;
|
|
8590
8679
|
images?: Record<string, {
|
|
8591
8680
|
type: "image";
|
|
@@ -8630,7 +8719,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8630
8719
|
suppressSpeech?: boolean | undefined;
|
|
8631
8720
|
} | undefined;
|
|
8632
8721
|
movieParams?: {
|
|
8633
|
-
provider?:
|
|
8722
|
+
provider?: string | undefined;
|
|
8634
8723
|
model?: string | undefined;
|
|
8635
8724
|
fillOption?: {
|
|
8636
8725
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8641,7 +8730,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8641
8730
|
} | undefined;
|
|
8642
8731
|
} | undefined;
|
|
8643
8732
|
htmlImageParams?: {
|
|
8644
|
-
provider?:
|
|
8733
|
+
provider?: string | undefined;
|
|
8645
8734
|
model?: string | undefined;
|
|
8646
8735
|
} | undefined;
|
|
8647
8736
|
textSlideParams?: {
|
|
@@ -8663,9 +8752,11 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8663
8752
|
speed?: number | undefined;
|
|
8664
8753
|
instruction?: string | undefined;
|
|
8665
8754
|
} | undefined;
|
|
8666
|
-
provider?:
|
|
8755
|
+
provider?: string | undefined;
|
|
8756
|
+
model?: string | undefined;
|
|
8667
8757
|
}>;
|
|
8668
|
-
provider?:
|
|
8758
|
+
provider?: string | undefined;
|
|
8759
|
+
model?: string | undefined;
|
|
8669
8760
|
} | undefined;
|
|
8670
8761
|
}>>;
|
|
8671
8762
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -8705,7 +8796,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8705
8796
|
height: number;
|
|
8706
8797
|
};
|
|
8707
8798
|
speechParams: {
|
|
8708
|
-
provider:
|
|
8799
|
+
provider: string;
|
|
8709
8800
|
speakers: Record<string, {
|
|
8710
8801
|
voiceId: string;
|
|
8711
8802
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8713,13 +8804,15 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8713
8804
|
speed?: number | undefined;
|
|
8714
8805
|
instruction?: string | undefined;
|
|
8715
8806
|
} | undefined;
|
|
8716
|
-
provider?:
|
|
8807
|
+
provider?: string | undefined;
|
|
8808
|
+
model?: string | undefined;
|
|
8717
8809
|
}>;
|
|
8810
|
+
model?: string | undefined;
|
|
8718
8811
|
};
|
|
8719
8812
|
imageParams?: {
|
|
8720
|
-
provider:
|
|
8721
|
-
style?: string | undefined;
|
|
8813
|
+
provider: string;
|
|
8722
8814
|
model?: string | undefined;
|
|
8815
|
+
style?: string | undefined;
|
|
8723
8816
|
moderation?: string | undefined;
|
|
8724
8817
|
images?: Record<string, {
|
|
8725
8818
|
type: "image";
|
|
@@ -8742,7 +8835,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8742
8835
|
}> | undefined;
|
|
8743
8836
|
} | undefined;
|
|
8744
8837
|
movieParams?: {
|
|
8745
|
-
provider?:
|
|
8838
|
+
provider?: string | undefined;
|
|
8746
8839
|
model?: string | undefined;
|
|
8747
8840
|
fillOption?: {
|
|
8748
8841
|
style: "aspectFit" | "aspectFill";
|
|
@@ -8753,7 +8846,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8753
8846
|
} | undefined;
|
|
8754
8847
|
} | undefined;
|
|
8755
8848
|
htmlImageParams?: {
|
|
8756
|
-
provider:
|
|
8849
|
+
provider: string;
|
|
8757
8850
|
model?: string | undefined;
|
|
8758
8851
|
} | undefined;
|
|
8759
8852
|
textSlideParams?: {
|
|
@@ -8775,9 +8868,9 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8775
8868
|
credit?: "closing" | undefined;
|
|
8776
8869
|
};
|
|
8777
8870
|
imageParams?: {
|
|
8778
|
-
provider?:
|
|
8779
|
-
style?: string | undefined;
|
|
8871
|
+
provider?: string | undefined;
|
|
8780
8872
|
model?: string | undefined;
|
|
8873
|
+
style?: string | undefined;
|
|
8781
8874
|
moderation?: string | undefined;
|
|
8782
8875
|
images?: Record<string, {
|
|
8783
8876
|
type: "image";
|
|
@@ -8822,7 +8915,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8822
8915
|
suppressSpeech?: boolean | undefined;
|
|
8823
8916
|
} | undefined;
|
|
8824
8917
|
movieParams?: {
|
|
8825
|
-
provider?:
|
|
8918
|
+
provider?: string | undefined;
|
|
8826
8919
|
model?: string | undefined;
|
|
8827
8920
|
fillOption?: {
|
|
8828
8921
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8833,7 +8926,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8833
8926
|
} | undefined;
|
|
8834
8927
|
} | undefined;
|
|
8835
8928
|
htmlImageParams?: {
|
|
8836
|
-
provider?:
|
|
8929
|
+
provider?: string | undefined;
|
|
8837
8930
|
model?: string | undefined;
|
|
8838
8931
|
} | undefined;
|
|
8839
8932
|
textSlideParams?: {
|
|
@@ -8855,9 +8948,11 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8855
8948
|
speed?: number | undefined;
|
|
8856
8949
|
instruction?: string | undefined;
|
|
8857
8950
|
} | undefined;
|
|
8858
|
-
provider?:
|
|
8951
|
+
provider?: string | undefined;
|
|
8952
|
+
model?: string | undefined;
|
|
8859
8953
|
}>;
|
|
8860
|
-
provider?:
|
|
8954
|
+
provider?: string | undefined;
|
|
8955
|
+
model?: string | undefined;
|
|
8861
8956
|
} | undefined;
|
|
8862
8957
|
} | undefined;
|
|
8863
8958
|
}>;
|
|
@@ -8888,7 +8983,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8888
8983
|
height: number;
|
|
8889
8984
|
}>>;
|
|
8890
8985
|
speechParams: z.ZodDefault<z.ZodObject<{
|
|
8891
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
8986
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
8892
8987
|
speakers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8893
8988
|
displayName: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
8894
8989
|
voiceId: z.ZodString;
|
|
@@ -8902,7 +8997,8 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8902
8997
|
speed?: number | undefined;
|
|
8903
8998
|
instruction?: string | undefined;
|
|
8904
8999
|
}>>;
|
|
8905
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
9000
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
9001
|
+
model: z.ZodOptional<z.ZodString>;
|
|
8906
9002
|
}, "strict", z.ZodTypeAny, {
|
|
8907
9003
|
voiceId: string;
|
|
8908
9004
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8910,7 +9006,8 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8910
9006
|
speed?: number | undefined;
|
|
8911
9007
|
instruction?: string | undefined;
|
|
8912
9008
|
} | undefined;
|
|
8913
|
-
provider?:
|
|
9009
|
+
provider?: string | undefined;
|
|
9010
|
+
model?: string | undefined;
|
|
8914
9011
|
}, {
|
|
8915
9012
|
voiceId: string;
|
|
8916
9013
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8918,10 +9015,12 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8918
9015
|
speed?: number | undefined;
|
|
8919
9016
|
instruction?: string | undefined;
|
|
8920
9017
|
} | undefined;
|
|
8921
|
-
provider?:
|
|
9018
|
+
provider?: string | undefined;
|
|
9019
|
+
model?: string | undefined;
|
|
8922
9020
|
}>>;
|
|
9021
|
+
model: z.ZodOptional<z.ZodString>;
|
|
8923
9022
|
}, "strict", z.ZodTypeAny, {
|
|
8924
|
-
provider:
|
|
9023
|
+
provider: string;
|
|
8925
9024
|
speakers: Record<string, {
|
|
8926
9025
|
voiceId: string;
|
|
8927
9026
|
displayName?: Record<string, string> | undefined;
|
|
@@ -8929,8 +9028,10 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8929
9028
|
speed?: number | undefined;
|
|
8930
9029
|
instruction?: string | undefined;
|
|
8931
9030
|
} | undefined;
|
|
8932
|
-
provider?:
|
|
9031
|
+
provider?: string | undefined;
|
|
9032
|
+
model?: string | undefined;
|
|
8933
9033
|
}>;
|
|
9034
|
+
model?: string | undefined;
|
|
8934
9035
|
}, {
|
|
8935
9036
|
speakers: Record<string, {
|
|
8936
9037
|
voiceId: string;
|
|
@@ -8939,12 +9040,14 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
8939
9040
|
speed?: number | undefined;
|
|
8940
9041
|
instruction?: string | undefined;
|
|
8941
9042
|
} | undefined;
|
|
8942
|
-
provider?:
|
|
9043
|
+
provider?: string | undefined;
|
|
9044
|
+
model?: string | undefined;
|
|
8943
9045
|
}>;
|
|
8944
|
-
provider?:
|
|
9046
|
+
provider?: string | undefined;
|
|
9047
|
+
model?: string | undefined;
|
|
8945
9048
|
}>>;
|
|
8946
9049
|
imageParams: z.ZodOptional<z.ZodObject<{
|
|
8947
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
9050
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
8948
9051
|
model: z.ZodOptional<z.ZodString>;
|
|
8949
9052
|
style: z.ZodOptional<z.ZodString>;
|
|
8950
9053
|
moderation: z.ZodOptional<z.ZodString>;
|
|
@@ -9028,9 +9131,9 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9028
9131
|
prompt: string;
|
|
9029
9132
|
}>]>>>;
|
|
9030
9133
|
}, "strict", z.ZodTypeAny, {
|
|
9031
|
-
provider:
|
|
9032
|
-
style?: string | undefined;
|
|
9134
|
+
provider: string;
|
|
9033
9135
|
model?: string | undefined;
|
|
9136
|
+
style?: string | undefined;
|
|
9034
9137
|
moderation?: string | undefined;
|
|
9035
9138
|
images?: Record<string, {
|
|
9036
9139
|
type: "image";
|
|
@@ -9052,9 +9155,9 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9052
9155
|
prompt: string;
|
|
9053
9156
|
}> | undefined;
|
|
9054
9157
|
}, {
|
|
9055
|
-
provider?:
|
|
9056
|
-
style?: string | undefined;
|
|
9158
|
+
provider?: string | undefined;
|
|
9057
9159
|
model?: string | undefined;
|
|
9160
|
+
style?: string | undefined;
|
|
9058
9161
|
moderation?: string | undefined;
|
|
9059
9162
|
images?: Record<string, {
|
|
9060
9163
|
type: "image";
|
|
@@ -9077,7 +9180,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9077
9180
|
}> | undefined;
|
|
9078
9181
|
}>>;
|
|
9079
9182
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
9080
|
-
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
9183
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
9081
9184
|
model: z.ZodOptional<z.ZodString>;
|
|
9082
9185
|
transition: z.ZodOptional<z.ZodObject<{
|
|
9083
9186
|
type: z.ZodEnum<["fade", "slideout_left"]>;
|
|
@@ -9097,7 +9200,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9097
9200
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
9098
9201
|
}>>;
|
|
9099
9202
|
}, "strict", z.ZodTypeAny, {
|
|
9100
|
-
provider?:
|
|
9203
|
+
provider?: string | undefined;
|
|
9101
9204
|
model?: string | undefined;
|
|
9102
9205
|
fillOption?: {
|
|
9103
9206
|
style: "aspectFit" | "aspectFill";
|
|
@@ -9107,7 +9210,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9107
9210
|
duration: number;
|
|
9108
9211
|
} | undefined;
|
|
9109
9212
|
}, {
|
|
9110
|
-
provider?:
|
|
9213
|
+
provider?: string | undefined;
|
|
9111
9214
|
model?: string | undefined;
|
|
9112
9215
|
fillOption?: {
|
|
9113
9216
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -9120,12 +9223,12 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9120
9223
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
9121
9224
|
model: z.ZodOptional<z.ZodString>;
|
|
9122
9225
|
} & {
|
|
9123
|
-
provider: z.ZodDefault<z.ZodEnum<[
|
|
9226
|
+
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
9124
9227
|
}, "strict", z.ZodTypeAny, {
|
|
9125
|
-
provider:
|
|
9228
|
+
provider: string;
|
|
9126
9229
|
model?: string | undefined;
|
|
9127
9230
|
}, {
|
|
9128
|
-
provider?:
|
|
9231
|
+
provider?: string | undefined;
|
|
9129
9232
|
model?: string | undefined;
|
|
9130
9233
|
}>>;
|
|
9131
9234
|
textSlideParams: z.ZodOptional<z.ZodObject<{
|
|
@@ -9265,7 +9368,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9265
9368
|
height: number;
|
|
9266
9369
|
};
|
|
9267
9370
|
speechParams: {
|
|
9268
|
-
provider:
|
|
9371
|
+
provider: string;
|
|
9269
9372
|
speakers: Record<string, {
|
|
9270
9373
|
voiceId: string;
|
|
9271
9374
|
displayName?: Record<string, string> | undefined;
|
|
@@ -9273,13 +9376,15 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9273
9376
|
speed?: number | undefined;
|
|
9274
9377
|
instruction?: string | undefined;
|
|
9275
9378
|
} | undefined;
|
|
9276
|
-
provider?:
|
|
9379
|
+
provider?: string | undefined;
|
|
9380
|
+
model?: string | undefined;
|
|
9277
9381
|
}>;
|
|
9382
|
+
model?: string | undefined;
|
|
9278
9383
|
};
|
|
9279
9384
|
imageParams?: {
|
|
9280
|
-
provider:
|
|
9281
|
-
style?: string | undefined;
|
|
9385
|
+
provider: string;
|
|
9282
9386
|
model?: string | undefined;
|
|
9387
|
+
style?: string | undefined;
|
|
9283
9388
|
moderation?: string | undefined;
|
|
9284
9389
|
images?: Record<string, {
|
|
9285
9390
|
type: "image";
|
|
@@ -9302,7 +9407,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9302
9407
|
}> | undefined;
|
|
9303
9408
|
} | undefined;
|
|
9304
9409
|
movieParams?: {
|
|
9305
|
-
provider?:
|
|
9410
|
+
provider?: string | undefined;
|
|
9306
9411
|
model?: string | undefined;
|
|
9307
9412
|
fillOption?: {
|
|
9308
9413
|
style: "aspectFit" | "aspectFill";
|
|
@@ -9313,7 +9418,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9313
9418
|
} | undefined;
|
|
9314
9419
|
} | undefined;
|
|
9315
9420
|
htmlImageParams?: {
|
|
9316
|
-
provider:
|
|
9421
|
+
provider: string;
|
|
9317
9422
|
model?: string | undefined;
|
|
9318
9423
|
} | undefined;
|
|
9319
9424
|
textSlideParams?: {
|
|
@@ -9329,9 +9434,9 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9329
9434
|
credit?: "closing" | undefined;
|
|
9330
9435
|
};
|
|
9331
9436
|
imageParams?: {
|
|
9332
|
-
provider?:
|
|
9333
|
-
style?: string | undefined;
|
|
9437
|
+
provider?: string | undefined;
|
|
9334
9438
|
model?: string | undefined;
|
|
9439
|
+
style?: string | undefined;
|
|
9335
9440
|
moderation?: string | undefined;
|
|
9336
9441
|
images?: Record<string, {
|
|
9337
9442
|
type: "image";
|
|
@@ -9376,7 +9481,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9376
9481
|
suppressSpeech?: boolean | undefined;
|
|
9377
9482
|
} | undefined;
|
|
9378
9483
|
movieParams?: {
|
|
9379
|
-
provider?:
|
|
9484
|
+
provider?: string | undefined;
|
|
9380
9485
|
model?: string | undefined;
|
|
9381
9486
|
fillOption?: {
|
|
9382
9487
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -9387,7 +9492,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9387
9492
|
} | undefined;
|
|
9388
9493
|
} | undefined;
|
|
9389
9494
|
htmlImageParams?: {
|
|
9390
|
-
provider?:
|
|
9495
|
+
provider?: string | undefined;
|
|
9391
9496
|
model?: string | undefined;
|
|
9392
9497
|
} | undefined;
|
|
9393
9498
|
textSlideParams?: {
|
|
@@ -9409,9 +9514,11 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9409
9514
|
speed?: number | undefined;
|
|
9410
9515
|
instruction?: string | undefined;
|
|
9411
9516
|
} | undefined;
|
|
9412
|
-
provider?:
|
|
9517
|
+
provider?: string | undefined;
|
|
9518
|
+
model?: string | undefined;
|
|
9413
9519
|
}>;
|
|
9414
|
-
provider?:
|
|
9520
|
+
provider?: string | undefined;
|
|
9521
|
+
model?: string | undefined;
|
|
9415
9522
|
} | undefined;
|
|
9416
9523
|
}>>;
|
|
9417
9524
|
} & {
|
|
@@ -9454,7 +9561,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9454
9561
|
height: number;
|
|
9455
9562
|
};
|
|
9456
9563
|
speechParams: {
|
|
9457
|
-
provider:
|
|
9564
|
+
provider: string;
|
|
9458
9565
|
speakers: Record<string, {
|
|
9459
9566
|
voiceId: string;
|
|
9460
9567
|
displayName?: Record<string, string> | undefined;
|
|
@@ -9462,13 +9569,15 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9462
9569
|
speed?: number | undefined;
|
|
9463
9570
|
instruction?: string | undefined;
|
|
9464
9571
|
} | undefined;
|
|
9465
|
-
provider?:
|
|
9572
|
+
provider?: string | undefined;
|
|
9573
|
+
model?: string | undefined;
|
|
9466
9574
|
}>;
|
|
9575
|
+
model?: string | undefined;
|
|
9467
9576
|
};
|
|
9468
9577
|
imageParams?: {
|
|
9469
|
-
provider:
|
|
9470
|
-
style?: string | undefined;
|
|
9578
|
+
provider: string;
|
|
9471
9579
|
model?: string | undefined;
|
|
9580
|
+
style?: string | undefined;
|
|
9472
9581
|
moderation?: string | undefined;
|
|
9473
9582
|
images?: Record<string, {
|
|
9474
9583
|
type: "image";
|
|
@@ -9491,7 +9600,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9491
9600
|
}> | undefined;
|
|
9492
9601
|
} | undefined;
|
|
9493
9602
|
movieParams?: {
|
|
9494
|
-
provider?:
|
|
9603
|
+
provider?: string | undefined;
|
|
9495
9604
|
model?: string | undefined;
|
|
9496
9605
|
fillOption?: {
|
|
9497
9606
|
style: "aspectFit" | "aspectFill";
|
|
@@ -9502,7 +9611,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9502
9611
|
} | undefined;
|
|
9503
9612
|
} | undefined;
|
|
9504
9613
|
htmlImageParams?: {
|
|
9505
|
-
provider:
|
|
9614
|
+
provider: string;
|
|
9506
9615
|
model?: string | undefined;
|
|
9507
9616
|
} | undefined;
|
|
9508
9617
|
textSlideParams?: {
|
|
@@ -9525,9 +9634,9 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9525
9634
|
credit?: "closing" | undefined;
|
|
9526
9635
|
};
|
|
9527
9636
|
imageParams?: {
|
|
9528
|
-
provider?:
|
|
9529
|
-
style?: string | undefined;
|
|
9637
|
+
provider?: string | undefined;
|
|
9530
9638
|
model?: string | undefined;
|
|
9639
|
+
style?: string | undefined;
|
|
9531
9640
|
moderation?: string | undefined;
|
|
9532
9641
|
images?: Record<string, {
|
|
9533
9642
|
type: "image";
|
|
@@ -9572,7 +9681,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9572
9681
|
suppressSpeech?: boolean | undefined;
|
|
9573
9682
|
} | undefined;
|
|
9574
9683
|
movieParams?: {
|
|
9575
|
-
provider?:
|
|
9684
|
+
provider?: string | undefined;
|
|
9576
9685
|
model?: string | undefined;
|
|
9577
9686
|
fillOption?: {
|
|
9578
9687
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -9583,7 +9692,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9583
9692
|
} | undefined;
|
|
9584
9693
|
} | undefined;
|
|
9585
9694
|
htmlImageParams?: {
|
|
9586
|
-
provider?:
|
|
9695
|
+
provider?: string | undefined;
|
|
9587
9696
|
model?: string | undefined;
|
|
9588
9697
|
} | undefined;
|
|
9589
9698
|
textSlideParams?: {
|
|
@@ -9605,9 +9714,11 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9605
9714
|
speed?: number | undefined;
|
|
9606
9715
|
instruction?: string | undefined;
|
|
9607
9716
|
} | undefined;
|
|
9608
|
-
provider?:
|
|
9717
|
+
provider?: string | undefined;
|
|
9718
|
+
model?: string | undefined;
|
|
9609
9719
|
}>;
|
|
9610
|
-
provider?:
|
|
9720
|
+
provider?: string | undefined;
|
|
9721
|
+
model?: string | undefined;
|
|
9611
9722
|
} | undefined;
|
|
9612
9723
|
} | undefined;
|
|
9613
9724
|
}>;
|