mulmocast 0.1.6 → 0.1.7
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/assets/templates/ani.json +48 -0
- package/assets/templates/ani_ja.json +45 -0
- package/lib/actions/audio.js +2 -0
- package/lib/actions/image_agents.d.ts +28 -22
- package/lib/actions/image_agents.js +4 -4
- package/lib/actions/images.js +9 -12
- package/lib/agents/movie_replicate_agent.js +3 -2
- package/lib/cli/commands/tool/scripting/builder.js +1 -1
- package/lib/cli/commands/tool/scripting/handler.d.ts +1 -1
- package/lib/cli/commands/tool/story_to_script/builder.js +1 -1
- package/lib/cli/commands/tool/story_to_script/handler.d.ts +1 -1
- package/lib/methods/mulmo_presentation_style.d.ts +15 -1
- package/lib/methods/mulmo_presentation_style.js +10 -11
- package/lib/tools/story_to_script.d.ts +1 -1
- package/lib/types/schema.d.ts +343 -322
- package/lib/types/schema.js +21 -14
- package/lib/types/type.d.ts +3 -2
- package/lib/utils/context.d.ts +73 -72
- package/lib/utils/ffmpeg_utils.js +6 -0
- package/lib/utils/preprocess.d.ts +37 -36
- package/lib/utils/provider2agent.d.ts +9 -7
- package/lib/utils/provider2agent.js +12 -7
- package/lib/utils/utils.d.ts +1 -2
- package/lib/utils/utils.js +1 -2
- package/package.json +7 -7
- package/scripts/templates/presentation.json~ +0 -119
package/lib/types/schema.d.ts
CHANGED
|
@@ -1288,6 +1288,7 @@ export declare const htmlPromptParamsSchema: z.ZodObject<{
|
|
|
1288
1288
|
images?: Record<string, any> | undefined;
|
|
1289
1289
|
systemPrompt?: string | undefined;
|
|
1290
1290
|
}>;
|
|
1291
|
+
export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
1291
1292
|
export declare const mulmoBeatSchema: z.ZodObject<{
|
|
1292
1293
|
speaker: z.ZodDefault<z.ZodString>;
|
|
1293
1294
|
text: z.ZodDefault<z.ZodString>;
|
|
@@ -1955,6 +1956,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1955
1956
|
movieVolume?: number | undefined;
|
|
1956
1957
|
}>>;
|
|
1957
1958
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
1959
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
1958
1960
|
model: z.ZodOptional<z.ZodString>;
|
|
1959
1961
|
fillOption: z.ZodOptional<z.ZodObject<{
|
|
1960
1962
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
@@ -1966,12 +1968,14 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
1966
1968
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
1967
1969
|
}, "strip", z.ZodTypeAny, {
|
|
1968
1970
|
speed?: number | undefined;
|
|
1971
|
+
provider?: string | undefined;
|
|
1969
1972
|
model?: string | undefined;
|
|
1970
1973
|
fillOption?: {
|
|
1971
1974
|
style: "aspectFit" | "aspectFill";
|
|
1972
1975
|
} | undefined;
|
|
1973
1976
|
}, {
|
|
1974
1977
|
speed?: number | undefined;
|
|
1978
|
+
provider?: string | undefined;
|
|
1975
1979
|
model?: string | undefined;
|
|
1976
1980
|
fillOption?: {
|
|
1977
1981
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -2195,6 +2199,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2195
2199
|
} | undefined;
|
|
2196
2200
|
movieParams?: {
|
|
2197
2201
|
speed?: number | undefined;
|
|
2202
|
+
provider?: string | undefined;
|
|
2198
2203
|
model?: string | undefined;
|
|
2199
2204
|
fillOption?: {
|
|
2200
2205
|
style: "aspectFit" | "aspectFill";
|
|
@@ -2383,6 +2388,7 @@ export declare const mulmoBeatSchema: z.ZodObject<{
|
|
|
2383
2388
|
} | undefined;
|
|
2384
2389
|
movieParams?: {
|
|
2385
2390
|
speed?: number | undefined;
|
|
2391
|
+
provider?: string | undefined;
|
|
2386
2392
|
model?: string | undefined;
|
|
2387
2393
|
fillOption?: {
|
|
2388
2394
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -2492,7 +2498,6 @@ export declare const mulmoSpeechParamsSchema: z.ZodObject<{
|
|
|
2492
2498
|
model?: string | undefined;
|
|
2493
2499
|
}>;
|
|
2494
2500
|
export declare const text2HtmlImageProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2495
|
-
export declare const text2MovieProviderSchema: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2496
2501
|
export declare const mulmoGoogleMovieModelSchema: z.ZodObject<{
|
|
2497
2502
|
provider: z.ZodLiteral<"google">;
|
|
2498
2503
|
model: z.ZodOptional<z.ZodEnum<[string, ...string[]]>>;
|
|
@@ -2649,7 +2654,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2649
2654
|
provider?: string | undefined;
|
|
2650
2655
|
model?: string | undefined;
|
|
2651
2656
|
}>>;
|
|
2652
|
-
imageParams: z.ZodOptional<z.ZodObject<{
|
|
2657
|
+
imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2653
2658
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
2654
2659
|
model: z.ZodOptional<z.ZodString>;
|
|
2655
2660
|
style: z.ZodOptional<z.ZodString>;
|
|
@@ -2781,8 +2786,8 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2781
2786
|
type: "imagePrompt";
|
|
2782
2787
|
prompt: string;
|
|
2783
2788
|
}> | undefined;
|
|
2784
|
-
}
|
|
2785
|
-
movieParams: z.ZodOptional<z.ZodObject<{
|
|
2789
|
+
}>>>;
|
|
2790
|
+
movieParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2786
2791
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
2787
2792
|
model: z.ZodOptional<z.ZodString>;
|
|
2788
2793
|
transition: z.ZodOptional<z.ZodObject<{
|
|
@@ -2822,7 +2827,7 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2822
2827
|
type: "fade" | "slideout_left";
|
|
2823
2828
|
duration?: number | undefined;
|
|
2824
2829
|
} | undefined;
|
|
2825
|
-
}
|
|
2830
|
+
}>>>;
|
|
2826
2831
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
2827
2832
|
model: z.ZodOptional<z.ZodString>;
|
|
2828
2833
|
} & {
|
|
@@ -2940,6 +2945,31 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2940
2945
|
suppressSpeech?: boolean | undefined;
|
|
2941
2946
|
}>>;
|
|
2942
2947
|
}, "strip", z.ZodTypeAny, {
|
|
2948
|
+
imageParams: {
|
|
2949
|
+
provider: string;
|
|
2950
|
+
model?: string | undefined;
|
|
2951
|
+
style?: string | undefined;
|
|
2952
|
+
moderation?: string | undefined;
|
|
2953
|
+
images?: Record<string, {
|
|
2954
|
+
type: "image";
|
|
2955
|
+
source: {
|
|
2956
|
+
url: string;
|
|
2957
|
+
kind: "url";
|
|
2958
|
+
} | {
|
|
2959
|
+
kind: "base64";
|
|
2960
|
+
data: string;
|
|
2961
|
+
} | {
|
|
2962
|
+
text: string;
|
|
2963
|
+
kind: "text";
|
|
2964
|
+
} | {
|
|
2965
|
+
path: string;
|
|
2966
|
+
kind: "path";
|
|
2967
|
+
};
|
|
2968
|
+
} | {
|
|
2969
|
+
type: "imagePrompt";
|
|
2970
|
+
prompt: string;
|
|
2971
|
+
}> | undefined;
|
|
2972
|
+
};
|
|
2943
2973
|
audioParams: {
|
|
2944
2974
|
padding: number;
|
|
2945
2975
|
introPadding: number;
|
|
@@ -2962,6 +2992,17 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2962
2992
|
kind: "path";
|
|
2963
2993
|
} | undefined;
|
|
2964
2994
|
};
|
|
2995
|
+
movieParams: {
|
|
2996
|
+
provider?: string | undefined;
|
|
2997
|
+
model?: string | undefined;
|
|
2998
|
+
fillOption?: {
|
|
2999
|
+
style: "aspectFit" | "aspectFill";
|
|
3000
|
+
} | undefined;
|
|
3001
|
+
transition?: {
|
|
3002
|
+
type: "fade" | "slideout_left";
|
|
3003
|
+
duration: number;
|
|
3004
|
+
} | undefined;
|
|
3005
|
+
};
|
|
2965
3006
|
$mulmocast: {
|
|
2966
3007
|
version: "1.0";
|
|
2967
3008
|
credit?: "closing" | undefined;
|
|
@@ -2984,42 +3025,6 @@ export declare const mulmoPresentationStyleSchema: z.ZodObject<{
|
|
|
2984
3025
|
}>;
|
|
2985
3026
|
model?: string | undefined;
|
|
2986
3027
|
};
|
|
2987
|
-
imageParams?: {
|
|
2988
|
-
provider: string;
|
|
2989
|
-
model?: string | undefined;
|
|
2990
|
-
style?: string | undefined;
|
|
2991
|
-
moderation?: string | undefined;
|
|
2992
|
-
images?: Record<string, {
|
|
2993
|
-
type: "image";
|
|
2994
|
-
source: {
|
|
2995
|
-
url: string;
|
|
2996
|
-
kind: "url";
|
|
2997
|
-
} | {
|
|
2998
|
-
kind: "base64";
|
|
2999
|
-
data: string;
|
|
3000
|
-
} | {
|
|
3001
|
-
text: string;
|
|
3002
|
-
kind: "text";
|
|
3003
|
-
} | {
|
|
3004
|
-
path: string;
|
|
3005
|
-
kind: "path";
|
|
3006
|
-
};
|
|
3007
|
-
} | {
|
|
3008
|
-
type: "imagePrompt";
|
|
3009
|
-
prompt: string;
|
|
3010
|
-
}> | undefined;
|
|
3011
|
-
} | undefined;
|
|
3012
|
-
movieParams?: {
|
|
3013
|
-
provider?: string | undefined;
|
|
3014
|
-
model?: string | undefined;
|
|
3015
|
-
fillOption?: {
|
|
3016
|
-
style: "aspectFit" | "aspectFill";
|
|
3017
|
-
} | undefined;
|
|
3018
|
-
transition?: {
|
|
3019
|
-
type: "fade" | "slideout_left";
|
|
3020
|
-
duration: number;
|
|
3021
|
-
} | undefined;
|
|
3022
|
-
} | undefined;
|
|
3023
3028
|
htmlImageParams?: {
|
|
3024
3029
|
provider: string;
|
|
3025
3030
|
model?: string | undefined;
|
|
@@ -3225,7 +3230,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3225
3230
|
provider?: string | undefined;
|
|
3226
3231
|
model?: string | undefined;
|
|
3227
3232
|
}>>;
|
|
3228
|
-
imageParams: z.ZodOptional<z.ZodObject<{
|
|
3233
|
+
imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3229
3234
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
3230
3235
|
model: z.ZodOptional<z.ZodString>;
|
|
3231
3236
|
style: z.ZodOptional<z.ZodString>;
|
|
@@ -3357,8 +3362,8 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3357
3362
|
type: "imagePrompt";
|
|
3358
3363
|
prompt: string;
|
|
3359
3364
|
}> | undefined;
|
|
3360
|
-
}
|
|
3361
|
-
movieParams: z.ZodOptional<z.ZodObject<{
|
|
3365
|
+
}>>>;
|
|
3366
|
+
movieParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3362
3367
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
3363
3368
|
model: z.ZodOptional<z.ZodString>;
|
|
3364
3369
|
transition: z.ZodOptional<z.ZodObject<{
|
|
@@ -3398,7 +3403,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
3398
3403
|
type: "fade" | "slideout_left";
|
|
3399
3404
|
duration?: number | undefined;
|
|
3400
3405
|
} | undefined;
|
|
3401
|
-
}
|
|
3406
|
+
}>>>;
|
|
3402
3407
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
3403
3408
|
model: z.ZodOptional<z.ZodString>;
|
|
3404
3409
|
} & {
|
|
@@ -4202,6 +4207,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4202
4207
|
movieVolume?: number | undefined;
|
|
4203
4208
|
}>>;
|
|
4204
4209
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
4210
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
4205
4211
|
model: z.ZodOptional<z.ZodString>;
|
|
4206
4212
|
fillOption: z.ZodOptional<z.ZodObject<{
|
|
4207
4213
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
@@ -4213,12 +4219,14 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4213
4219
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
4214
4220
|
}, "strip", z.ZodTypeAny, {
|
|
4215
4221
|
speed?: number | undefined;
|
|
4222
|
+
provider?: string | undefined;
|
|
4216
4223
|
model?: string | undefined;
|
|
4217
4224
|
fillOption?: {
|
|
4218
4225
|
style: "aspectFit" | "aspectFill";
|
|
4219
4226
|
} | undefined;
|
|
4220
4227
|
}, {
|
|
4221
4228
|
speed?: number | undefined;
|
|
4229
|
+
provider?: string | undefined;
|
|
4222
4230
|
model?: string | undefined;
|
|
4223
4231
|
fillOption?: {
|
|
4224
4232
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -4442,6 +4450,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4442
4450
|
} | undefined;
|
|
4443
4451
|
movieParams?: {
|
|
4444
4452
|
speed?: number | undefined;
|
|
4453
|
+
provider?: string | undefined;
|
|
4445
4454
|
model?: string | undefined;
|
|
4446
4455
|
fillOption?: {
|
|
4447
4456
|
style: "aspectFit" | "aspectFill";
|
|
@@ -4630,6 +4639,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4630
4639
|
} | undefined;
|
|
4631
4640
|
movieParams?: {
|
|
4632
4641
|
speed?: number | undefined;
|
|
4642
|
+
provider?: string | undefined;
|
|
4633
4643
|
model?: string | undefined;
|
|
4634
4644
|
fillOption?: {
|
|
4635
4645
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -4657,6 +4667,31 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4657
4667
|
imagePath: z.ZodOptional<z.ZodString>;
|
|
4658
4668
|
__test_invalid__: z.ZodOptional<z.ZodBoolean>;
|
|
4659
4669
|
}, "strict", z.ZodTypeAny, {
|
|
4670
|
+
imageParams: {
|
|
4671
|
+
provider: string;
|
|
4672
|
+
model?: string | undefined;
|
|
4673
|
+
style?: string | undefined;
|
|
4674
|
+
moderation?: string | undefined;
|
|
4675
|
+
images?: Record<string, {
|
|
4676
|
+
type: "image";
|
|
4677
|
+
source: {
|
|
4678
|
+
url: string;
|
|
4679
|
+
kind: "url";
|
|
4680
|
+
} | {
|
|
4681
|
+
kind: "base64";
|
|
4682
|
+
data: string;
|
|
4683
|
+
} | {
|
|
4684
|
+
text: string;
|
|
4685
|
+
kind: "text";
|
|
4686
|
+
} | {
|
|
4687
|
+
path: string;
|
|
4688
|
+
kind: "path";
|
|
4689
|
+
};
|
|
4690
|
+
} | {
|
|
4691
|
+
type: "imagePrompt";
|
|
4692
|
+
prompt: string;
|
|
4693
|
+
}> | undefined;
|
|
4694
|
+
};
|
|
4660
4695
|
audioParams: {
|
|
4661
4696
|
padding: number;
|
|
4662
4697
|
introPadding: number;
|
|
@@ -4679,6 +4714,17 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4679
4714
|
kind: "path";
|
|
4680
4715
|
} | undefined;
|
|
4681
4716
|
};
|
|
4717
|
+
movieParams: {
|
|
4718
|
+
provider?: string | undefined;
|
|
4719
|
+
model?: string | undefined;
|
|
4720
|
+
fillOption?: {
|
|
4721
|
+
style: "aspectFit" | "aspectFill";
|
|
4722
|
+
} | undefined;
|
|
4723
|
+
transition?: {
|
|
4724
|
+
type: "fade" | "slideout_left";
|
|
4725
|
+
duration: number;
|
|
4726
|
+
} | undefined;
|
|
4727
|
+
};
|
|
4682
4728
|
$mulmocast: {
|
|
4683
4729
|
version: "1.0";
|
|
4684
4730
|
credit?: "closing" | undefined;
|
|
@@ -4866,6 +4912,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4866
4912
|
} | undefined;
|
|
4867
4913
|
movieParams?: {
|
|
4868
4914
|
speed?: number | undefined;
|
|
4915
|
+
provider?: string | undefined;
|
|
4869
4916
|
model?: string | undefined;
|
|
4870
4917
|
fillOption?: {
|
|
4871
4918
|
style: "aspectFit" | "aspectFill";
|
|
@@ -4893,42 +4940,6 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
4893
4940
|
lang?: string | undefined;
|
|
4894
4941
|
title?: string | undefined;
|
|
4895
4942
|
description?: string | undefined;
|
|
4896
|
-
imageParams?: {
|
|
4897
|
-
provider: string;
|
|
4898
|
-
model?: string | undefined;
|
|
4899
|
-
style?: string | undefined;
|
|
4900
|
-
moderation?: string | undefined;
|
|
4901
|
-
images?: Record<string, {
|
|
4902
|
-
type: "image";
|
|
4903
|
-
source: {
|
|
4904
|
-
url: string;
|
|
4905
|
-
kind: "url";
|
|
4906
|
-
} | {
|
|
4907
|
-
kind: "base64";
|
|
4908
|
-
data: string;
|
|
4909
|
-
} | {
|
|
4910
|
-
text: string;
|
|
4911
|
-
kind: "text";
|
|
4912
|
-
} | {
|
|
4913
|
-
path: string;
|
|
4914
|
-
kind: "path";
|
|
4915
|
-
};
|
|
4916
|
-
} | {
|
|
4917
|
-
type: "imagePrompt";
|
|
4918
|
-
prompt: string;
|
|
4919
|
-
}> | undefined;
|
|
4920
|
-
} | undefined;
|
|
4921
|
-
movieParams?: {
|
|
4922
|
-
provider?: string | undefined;
|
|
4923
|
-
model?: string | undefined;
|
|
4924
|
-
fillOption?: {
|
|
4925
|
-
style: "aspectFit" | "aspectFill";
|
|
4926
|
-
} | undefined;
|
|
4927
|
-
transition?: {
|
|
4928
|
-
type: "fade" | "slideout_left";
|
|
4929
|
-
duration: number;
|
|
4930
|
-
} | undefined;
|
|
4931
|
-
} | undefined;
|
|
4932
4943
|
htmlImageParams?: {
|
|
4933
4944
|
provider: string;
|
|
4934
4945
|
model?: string | undefined;
|
|
@@ -5118,6 +5129,7 @@ export declare const mulmoScriptSchema: z.ZodObject<{
|
|
|
5118
5129
|
} | undefined;
|
|
5119
5130
|
movieParams?: {
|
|
5120
5131
|
speed?: number | undefined;
|
|
5132
|
+
provider?: string | undefined;
|
|
5121
5133
|
model?: string | undefined;
|
|
5122
5134
|
fillOption?: {
|
|
5123
5135
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -5523,7 +5535,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5523
5535
|
provider?: string | undefined;
|
|
5524
5536
|
model?: string | undefined;
|
|
5525
5537
|
}>>;
|
|
5526
|
-
imageParams: z.ZodOptional<z.ZodObject<{
|
|
5538
|
+
imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
5527
5539
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
5528
5540
|
model: z.ZodOptional<z.ZodString>;
|
|
5529
5541
|
style: z.ZodOptional<z.ZodString>;
|
|
@@ -5655,8 +5667,8 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5655
5667
|
type: "imagePrompt";
|
|
5656
5668
|
prompt: string;
|
|
5657
5669
|
}> | undefined;
|
|
5658
|
-
}
|
|
5659
|
-
movieParams: z.ZodOptional<z.ZodObject<{
|
|
5670
|
+
}>>>;
|
|
5671
|
+
movieParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
5660
5672
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
5661
5673
|
model: z.ZodOptional<z.ZodString>;
|
|
5662
5674
|
transition: z.ZodOptional<z.ZodObject<{
|
|
@@ -5696,7 +5708,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
5696
5708
|
type: "fade" | "slideout_left";
|
|
5697
5709
|
duration?: number | undefined;
|
|
5698
5710
|
} | undefined;
|
|
5699
|
-
}
|
|
5711
|
+
}>>>;
|
|
5700
5712
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
5701
5713
|
model: z.ZodOptional<z.ZodString>;
|
|
5702
5714
|
} & {
|
|
@@ -6500,6 +6512,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6500
6512
|
movieVolume?: number | undefined;
|
|
6501
6513
|
}>>;
|
|
6502
6514
|
movieParams: z.ZodOptional<z.ZodObject<{
|
|
6515
|
+
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
6503
6516
|
model: z.ZodOptional<z.ZodString>;
|
|
6504
6517
|
fillOption: z.ZodOptional<z.ZodObject<{
|
|
6505
6518
|
style: z.ZodDefault<z.ZodEnum<["aspectFit", "aspectFill"]>>;
|
|
@@ -6511,12 +6524,14 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6511
6524
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
6512
6525
|
}, "strip", z.ZodTypeAny, {
|
|
6513
6526
|
speed?: number | undefined;
|
|
6527
|
+
provider?: string | undefined;
|
|
6514
6528
|
model?: string | undefined;
|
|
6515
6529
|
fillOption?: {
|
|
6516
6530
|
style: "aspectFit" | "aspectFill";
|
|
6517
6531
|
} | undefined;
|
|
6518
6532
|
}, {
|
|
6519
6533
|
speed?: number | undefined;
|
|
6534
|
+
provider?: string | undefined;
|
|
6520
6535
|
model?: string | undefined;
|
|
6521
6536
|
fillOption?: {
|
|
6522
6537
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -6740,6 +6755,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6740
6755
|
} | undefined;
|
|
6741
6756
|
movieParams?: {
|
|
6742
6757
|
speed?: number | undefined;
|
|
6758
|
+
provider?: string | undefined;
|
|
6743
6759
|
model?: string | undefined;
|
|
6744
6760
|
fillOption?: {
|
|
6745
6761
|
style: "aspectFit" | "aspectFill";
|
|
@@ -6928,6 +6944,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6928
6944
|
} | undefined;
|
|
6929
6945
|
movieParams?: {
|
|
6930
6946
|
speed?: number | undefined;
|
|
6947
|
+
provider?: string | undefined;
|
|
6931
6948
|
model?: string | undefined;
|
|
6932
6949
|
fillOption?: {
|
|
6933
6950
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -6955,6 +6972,31 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6955
6972
|
imagePath: z.ZodOptional<z.ZodString>;
|
|
6956
6973
|
__test_invalid__: z.ZodOptional<z.ZodBoolean>;
|
|
6957
6974
|
}, "strict", z.ZodTypeAny, {
|
|
6975
|
+
imageParams: {
|
|
6976
|
+
provider: string;
|
|
6977
|
+
model?: string | undefined;
|
|
6978
|
+
style?: string | undefined;
|
|
6979
|
+
moderation?: string | undefined;
|
|
6980
|
+
images?: Record<string, {
|
|
6981
|
+
type: "image";
|
|
6982
|
+
source: {
|
|
6983
|
+
url: string;
|
|
6984
|
+
kind: "url";
|
|
6985
|
+
} | {
|
|
6986
|
+
kind: "base64";
|
|
6987
|
+
data: string;
|
|
6988
|
+
} | {
|
|
6989
|
+
text: string;
|
|
6990
|
+
kind: "text";
|
|
6991
|
+
} | {
|
|
6992
|
+
path: string;
|
|
6993
|
+
kind: "path";
|
|
6994
|
+
};
|
|
6995
|
+
} | {
|
|
6996
|
+
type: "imagePrompt";
|
|
6997
|
+
prompt: string;
|
|
6998
|
+
}> | undefined;
|
|
6999
|
+
};
|
|
6958
7000
|
audioParams: {
|
|
6959
7001
|
padding: number;
|
|
6960
7002
|
introPadding: number;
|
|
@@ -6977,6 +7019,17 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
6977
7019
|
kind: "path";
|
|
6978
7020
|
} | undefined;
|
|
6979
7021
|
};
|
|
7022
|
+
movieParams: {
|
|
7023
|
+
provider?: string | undefined;
|
|
7024
|
+
model?: string | undefined;
|
|
7025
|
+
fillOption?: {
|
|
7026
|
+
style: "aspectFit" | "aspectFill";
|
|
7027
|
+
} | undefined;
|
|
7028
|
+
transition?: {
|
|
7029
|
+
type: "fade" | "slideout_left";
|
|
7030
|
+
duration: number;
|
|
7031
|
+
} | undefined;
|
|
7032
|
+
};
|
|
6980
7033
|
$mulmocast: {
|
|
6981
7034
|
version: "1.0";
|
|
6982
7035
|
credit?: "closing" | undefined;
|
|
@@ -7164,6 +7217,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7164
7217
|
} | undefined;
|
|
7165
7218
|
movieParams?: {
|
|
7166
7219
|
speed?: number | undefined;
|
|
7220
|
+
provider?: string | undefined;
|
|
7167
7221
|
model?: string | undefined;
|
|
7168
7222
|
fillOption?: {
|
|
7169
7223
|
style: "aspectFit" | "aspectFill";
|
|
@@ -7191,42 +7245,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7191
7245
|
lang?: string | undefined;
|
|
7192
7246
|
title?: string | undefined;
|
|
7193
7247
|
description?: string | undefined;
|
|
7194
|
-
imageParams?: {
|
|
7195
|
-
provider: string;
|
|
7196
|
-
model?: string | undefined;
|
|
7197
|
-
style?: string | undefined;
|
|
7198
|
-
moderation?: string | undefined;
|
|
7199
|
-
images?: Record<string, {
|
|
7200
|
-
type: "image";
|
|
7201
|
-
source: {
|
|
7202
|
-
url: string;
|
|
7203
|
-
kind: "url";
|
|
7204
|
-
} | {
|
|
7205
|
-
kind: "base64";
|
|
7206
|
-
data: string;
|
|
7207
|
-
} | {
|
|
7208
|
-
text: string;
|
|
7209
|
-
kind: "text";
|
|
7210
|
-
} | {
|
|
7211
|
-
path: string;
|
|
7212
|
-
kind: "path";
|
|
7213
|
-
};
|
|
7214
|
-
} | {
|
|
7215
|
-
type: "imagePrompt";
|
|
7216
|
-
prompt: string;
|
|
7217
|
-
}> | undefined;
|
|
7218
|
-
} | undefined;
|
|
7219
|
-
movieParams?: {
|
|
7220
|
-
provider?: string | undefined;
|
|
7221
|
-
model?: string | undefined;
|
|
7222
|
-
fillOption?: {
|
|
7223
|
-
style: "aspectFit" | "aspectFill";
|
|
7224
|
-
} | undefined;
|
|
7225
|
-
transition?: {
|
|
7226
|
-
type: "fade" | "slideout_left";
|
|
7227
|
-
duration: number;
|
|
7228
|
-
} | undefined;
|
|
7229
|
-
} | undefined;
|
|
7230
7248
|
htmlImageParams?: {
|
|
7231
7249
|
provider: string;
|
|
7232
7250
|
model?: string | undefined;
|
|
@@ -7416,6 +7434,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7416
7434
|
} | undefined;
|
|
7417
7435
|
movieParams?: {
|
|
7418
7436
|
speed?: number | undefined;
|
|
7437
|
+
provider?: string | undefined;
|
|
7419
7438
|
model?: string | undefined;
|
|
7420
7439
|
fillOption?: {
|
|
7421
7440
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -7592,19 +7611,44 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7592
7611
|
captionFile?: string | undefined;
|
|
7593
7612
|
}[];
|
|
7594
7613
|
script: {
|
|
7595
|
-
|
|
7596
|
-
|
|
7597
|
-
|
|
7598
|
-
|
|
7599
|
-
|
|
7600
|
-
|
|
7601
|
-
|
|
7602
|
-
|
|
7603
|
-
|
|
7604
|
-
|
|
7605
|
-
|
|
7606
|
-
|
|
7607
|
-
|
|
7614
|
+
imageParams: {
|
|
7615
|
+
provider: string;
|
|
7616
|
+
model?: string | undefined;
|
|
7617
|
+
style?: string | undefined;
|
|
7618
|
+
moderation?: string | undefined;
|
|
7619
|
+
images?: Record<string, {
|
|
7620
|
+
type: "image";
|
|
7621
|
+
source: {
|
|
7622
|
+
url: string;
|
|
7623
|
+
kind: "url";
|
|
7624
|
+
} | {
|
|
7625
|
+
kind: "base64";
|
|
7626
|
+
data: string;
|
|
7627
|
+
} | {
|
|
7628
|
+
text: string;
|
|
7629
|
+
kind: "text";
|
|
7630
|
+
} | {
|
|
7631
|
+
path: string;
|
|
7632
|
+
kind: "path";
|
|
7633
|
+
};
|
|
7634
|
+
} | {
|
|
7635
|
+
type: "imagePrompt";
|
|
7636
|
+
prompt: string;
|
|
7637
|
+
}> | undefined;
|
|
7638
|
+
};
|
|
7639
|
+
audioParams: {
|
|
7640
|
+
padding: number;
|
|
7641
|
+
introPadding: number;
|
|
7642
|
+
closingPadding: number;
|
|
7643
|
+
outroPadding: number;
|
|
7644
|
+
bgmVolume: number;
|
|
7645
|
+
audioVolume: number;
|
|
7646
|
+
suppressSpeech: boolean;
|
|
7647
|
+
bgm?: {
|
|
7648
|
+
url: string;
|
|
7649
|
+
kind: "url";
|
|
7650
|
+
} | {
|
|
7651
|
+
kind: "base64";
|
|
7608
7652
|
data: string;
|
|
7609
7653
|
} | {
|
|
7610
7654
|
text: string;
|
|
@@ -7614,6 +7658,17 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7614
7658
|
kind: "path";
|
|
7615
7659
|
} | undefined;
|
|
7616
7660
|
};
|
|
7661
|
+
movieParams: {
|
|
7662
|
+
provider?: string | undefined;
|
|
7663
|
+
model?: string | undefined;
|
|
7664
|
+
fillOption?: {
|
|
7665
|
+
style: "aspectFit" | "aspectFill";
|
|
7666
|
+
} | undefined;
|
|
7667
|
+
transition?: {
|
|
7668
|
+
type: "fade" | "slideout_left";
|
|
7669
|
+
duration: number;
|
|
7670
|
+
} | undefined;
|
|
7671
|
+
};
|
|
7617
7672
|
$mulmocast: {
|
|
7618
7673
|
version: "1.0";
|
|
7619
7674
|
credit?: "closing" | undefined;
|
|
@@ -7801,6 +7856,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7801
7856
|
} | undefined;
|
|
7802
7857
|
movieParams?: {
|
|
7803
7858
|
speed?: number | undefined;
|
|
7859
|
+
provider?: string | undefined;
|
|
7804
7860
|
model?: string | undefined;
|
|
7805
7861
|
fillOption?: {
|
|
7806
7862
|
style: "aspectFit" | "aspectFill";
|
|
@@ -7828,42 +7884,6 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
7828
7884
|
lang?: string | undefined;
|
|
7829
7885
|
title?: string | undefined;
|
|
7830
7886
|
description?: string | undefined;
|
|
7831
|
-
imageParams?: {
|
|
7832
|
-
provider: string;
|
|
7833
|
-
model?: string | undefined;
|
|
7834
|
-
style?: string | undefined;
|
|
7835
|
-
moderation?: string | undefined;
|
|
7836
|
-
images?: Record<string, {
|
|
7837
|
-
type: "image";
|
|
7838
|
-
source: {
|
|
7839
|
-
url: string;
|
|
7840
|
-
kind: "url";
|
|
7841
|
-
} | {
|
|
7842
|
-
kind: "base64";
|
|
7843
|
-
data: string;
|
|
7844
|
-
} | {
|
|
7845
|
-
text: string;
|
|
7846
|
-
kind: "text";
|
|
7847
|
-
} | {
|
|
7848
|
-
path: string;
|
|
7849
|
-
kind: "path";
|
|
7850
|
-
};
|
|
7851
|
-
} | {
|
|
7852
|
-
type: "imagePrompt";
|
|
7853
|
-
prompt: string;
|
|
7854
|
-
}> | undefined;
|
|
7855
|
-
} | undefined;
|
|
7856
|
-
movieParams?: {
|
|
7857
|
-
provider?: string | undefined;
|
|
7858
|
-
model?: string | undefined;
|
|
7859
|
-
fillOption?: {
|
|
7860
|
-
style: "aspectFit" | "aspectFill";
|
|
7861
|
-
} | undefined;
|
|
7862
|
-
transition?: {
|
|
7863
|
-
type: "fade" | "slideout_left";
|
|
7864
|
-
duration: number;
|
|
7865
|
-
} | undefined;
|
|
7866
|
-
} | undefined;
|
|
7867
7887
|
htmlImageParams?: {
|
|
7868
7888
|
provider: string;
|
|
7869
7889
|
model?: string | undefined;
|
|
@@ -8069,6 +8089,7 @@ export declare const mulmoStudioSchema: z.ZodObject<{
|
|
|
8069
8089
|
} | undefined;
|
|
8070
8090
|
movieParams?: {
|
|
8071
8091
|
speed?: number | undefined;
|
|
8092
|
+
provider?: string | undefined;
|
|
8072
8093
|
model?: string | undefined;
|
|
8073
8094
|
fillOption?: {
|
|
8074
8095
|
style?: "aspectFit" | "aspectFill" | undefined;
|
|
@@ -8284,7 +8305,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8284
8305
|
provider?: string | undefined;
|
|
8285
8306
|
model?: string | undefined;
|
|
8286
8307
|
}>>;
|
|
8287
|
-
imageParams: z.ZodOptional<z.ZodObject<{
|
|
8308
|
+
imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
8288
8309
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
8289
8310
|
model: z.ZodOptional<z.ZodString>;
|
|
8290
8311
|
style: z.ZodOptional<z.ZodString>;
|
|
@@ -8416,8 +8437,8 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8416
8437
|
type: "imagePrompt";
|
|
8417
8438
|
prompt: string;
|
|
8418
8439
|
}> | undefined;
|
|
8419
|
-
}
|
|
8420
|
-
movieParams: z.ZodOptional<z.ZodObject<{
|
|
8440
|
+
}>>>;
|
|
8441
|
+
movieParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
8421
8442
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
8422
8443
|
model: z.ZodOptional<z.ZodString>;
|
|
8423
8444
|
transition: z.ZodOptional<z.ZodObject<{
|
|
@@ -8457,7 +8478,7 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8457
8478
|
type: "fade" | "slideout_left";
|
|
8458
8479
|
duration?: number | undefined;
|
|
8459
8480
|
} | undefined;
|
|
8460
|
-
}
|
|
8481
|
+
}>>>;
|
|
8461
8482
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
8462
8483
|
model: z.ZodOptional<z.ZodString>;
|
|
8463
8484
|
} & {
|
|
@@ -8575,6 +8596,31 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8575
8596
|
suppressSpeech?: boolean | undefined;
|
|
8576
8597
|
}>>;
|
|
8577
8598
|
}, "strip", z.ZodTypeAny, {
|
|
8599
|
+
imageParams: {
|
|
8600
|
+
provider: string;
|
|
8601
|
+
model?: string | undefined;
|
|
8602
|
+
style?: string | undefined;
|
|
8603
|
+
moderation?: string | undefined;
|
|
8604
|
+
images?: Record<string, {
|
|
8605
|
+
type: "image";
|
|
8606
|
+
source: {
|
|
8607
|
+
url: string;
|
|
8608
|
+
kind: "url";
|
|
8609
|
+
} | {
|
|
8610
|
+
kind: "base64";
|
|
8611
|
+
data: string;
|
|
8612
|
+
} | {
|
|
8613
|
+
text: string;
|
|
8614
|
+
kind: "text";
|
|
8615
|
+
} | {
|
|
8616
|
+
path: string;
|
|
8617
|
+
kind: "path";
|
|
8618
|
+
};
|
|
8619
|
+
} | {
|
|
8620
|
+
type: "imagePrompt";
|
|
8621
|
+
prompt: string;
|
|
8622
|
+
}> | undefined;
|
|
8623
|
+
};
|
|
8578
8624
|
audioParams: {
|
|
8579
8625
|
padding: number;
|
|
8580
8626
|
introPadding: number;
|
|
@@ -8597,6 +8643,17 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8597
8643
|
kind: "path";
|
|
8598
8644
|
} | undefined;
|
|
8599
8645
|
};
|
|
8646
|
+
movieParams: {
|
|
8647
|
+
provider?: string | undefined;
|
|
8648
|
+
model?: string | undefined;
|
|
8649
|
+
fillOption?: {
|
|
8650
|
+
style: "aspectFit" | "aspectFill";
|
|
8651
|
+
} | undefined;
|
|
8652
|
+
transition?: {
|
|
8653
|
+
type: "fade" | "slideout_left";
|
|
8654
|
+
duration: number;
|
|
8655
|
+
} | undefined;
|
|
8656
|
+
};
|
|
8600
8657
|
$mulmocast: {
|
|
8601
8658
|
version: "1.0";
|
|
8602
8659
|
credit?: "closing" | undefined;
|
|
@@ -8619,42 +8676,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8619
8676
|
}>;
|
|
8620
8677
|
model?: string | undefined;
|
|
8621
8678
|
};
|
|
8622
|
-
imageParams?: {
|
|
8623
|
-
provider: string;
|
|
8624
|
-
model?: string | undefined;
|
|
8625
|
-
style?: string | undefined;
|
|
8626
|
-
moderation?: string | undefined;
|
|
8627
|
-
images?: Record<string, {
|
|
8628
|
-
type: "image";
|
|
8629
|
-
source: {
|
|
8630
|
-
url: string;
|
|
8631
|
-
kind: "url";
|
|
8632
|
-
} | {
|
|
8633
|
-
kind: "base64";
|
|
8634
|
-
data: string;
|
|
8635
|
-
} | {
|
|
8636
|
-
text: string;
|
|
8637
|
-
kind: "text";
|
|
8638
|
-
} | {
|
|
8639
|
-
path: string;
|
|
8640
|
-
kind: "path";
|
|
8641
|
-
};
|
|
8642
|
-
} | {
|
|
8643
|
-
type: "imagePrompt";
|
|
8644
|
-
prompt: string;
|
|
8645
|
-
}> | undefined;
|
|
8646
|
-
} | undefined;
|
|
8647
|
-
movieParams?: {
|
|
8648
|
-
provider?: string | undefined;
|
|
8649
|
-
model?: string | undefined;
|
|
8650
|
-
fillOption?: {
|
|
8651
|
-
style: "aspectFit" | "aspectFill";
|
|
8652
|
-
} | undefined;
|
|
8653
|
-
transition?: {
|
|
8654
|
-
type: "fade" | "slideout_left";
|
|
8655
|
-
duration: number;
|
|
8656
|
-
} | undefined;
|
|
8657
|
-
} | undefined;
|
|
8658
8679
|
htmlImageParams?: {
|
|
8659
8680
|
provider: string;
|
|
8660
8681
|
model?: string | undefined;
|
|
@@ -8765,6 +8786,31 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8765
8786
|
description: string;
|
|
8766
8787
|
scriptName?: string | undefined;
|
|
8767
8788
|
presentationStyle?: {
|
|
8789
|
+
imageParams: {
|
|
8790
|
+
provider: string;
|
|
8791
|
+
model?: string | undefined;
|
|
8792
|
+
style?: string | undefined;
|
|
8793
|
+
moderation?: string | undefined;
|
|
8794
|
+
images?: Record<string, {
|
|
8795
|
+
type: "image";
|
|
8796
|
+
source: {
|
|
8797
|
+
url: string;
|
|
8798
|
+
kind: "url";
|
|
8799
|
+
} | {
|
|
8800
|
+
kind: "base64";
|
|
8801
|
+
data: string;
|
|
8802
|
+
} | {
|
|
8803
|
+
text: string;
|
|
8804
|
+
kind: "text";
|
|
8805
|
+
} | {
|
|
8806
|
+
path: string;
|
|
8807
|
+
kind: "path";
|
|
8808
|
+
};
|
|
8809
|
+
} | {
|
|
8810
|
+
type: "imagePrompt";
|
|
8811
|
+
prompt: string;
|
|
8812
|
+
}> | undefined;
|
|
8813
|
+
};
|
|
8768
8814
|
audioParams: {
|
|
8769
8815
|
padding: number;
|
|
8770
8816
|
introPadding: number;
|
|
@@ -8787,6 +8833,17 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8787
8833
|
kind: "path";
|
|
8788
8834
|
} | undefined;
|
|
8789
8835
|
};
|
|
8836
|
+
movieParams: {
|
|
8837
|
+
provider?: string | undefined;
|
|
8838
|
+
model?: string | undefined;
|
|
8839
|
+
fillOption?: {
|
|
8840
|
+
style: "aspectFit" | "aspectFill";
|
|
8841
|
+
} | undefined;
|
|
8842
|
+
transition?: {
|
|
8843
|
+
type: "fade" | "slideout_left";
|
|
8844
|
+
duration: number;
|
|
8845
|
+
} | undefined;
|
|
8846
|
+
};
|
|
8790
8847
|
$mulmocast: {
|
|
8791
8848
|
version: "1.0";
|
|
8792
8849
|
credit?: "closing" | undefined;
|
|
@@ -8809,42 +8866,6 @@ export declare const mulmoScriptTemplateSchema: z.ZodObject<{
|
|
|
8809
8866
|
}>;
|
|
8810
8867
|
model?: string | undefined;
|
|
8811
8868
|
};
|
|
8812
|
-
imageParams?: {
|
|
8813
|
-
provider: string;
|
|
8814
|
-
model?: string | undefined;
|
|
8815
|
-
style?: string | undefined;
|
|
8816
|
-
moderation?: string | undefined;
|
|
8817
|
-
images?: Record<string, {
|
|
8818
|
-
type: "image";
|
|
8819
|
-
source: {
|
|
8820
|
-
url: string;
|
|
8821
|
-
kind: "url";
|
|
8822
|
-
} | {
|
|
8823
|
-
kind: "base64";
|
|
8824
|
-
data: string;
|
|
8825
|
-
} | {
|
|
8826
|
-
text: string;
|
|
8827
|
-
kind: "text";
|
|
8828
|
-
} | {
|
|
8829
|
-
path: string;
|
|
8830
|
-
kind: "path";
|
|
8831
|
-
};
|
|
8832
|
-
} | {
|
|
8833
|
-
type: "imagePrompt";
|
|
8834
|
-
prompt: string;
|
|
8835
|
-
}> | undefined;
|
|
8836
|
-
} | undefined;
|
|
8837
|
-
movieParams?: {
|
|
8838
|
-
provider?: string | undefined;
|
|
8839
|
-
model?: string | undefined;
|
|
8840
|
-
fillOption?: {
|
|
8841
|
-
style: "aspectFit" | "aspectFill";
|
|
8842
|
-
} | undefined;
|
|
8843
|
-
transition?: {
|
|
8844
|
-
type: "fade" | "slideout_left";
|
|
8845
|
-
duration: number;
|
|
8846
|
-
} | undefined;
|
|
8847
|
-
} | undefined;
|
|
8848
8869
|
htmlImageParams?: {
|
|
8849
8870
|
provider: string;
|
|
8850
8871
|
model?: string | undefined;
|
|
@@ -9046,7 +9067,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9046
9067
|
provider?: string | undefined;
|
|
9047
9068
|
model?: string | undefined;
|
|
9048
9069
|
}>>;
|
|
9049
|
-
imageParams: z.ZodOptional<z.ZodObject<{
|
|
9070
|
+
imageParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
9050
9071
|
provider: z.ZodDefault<z.ZodEnum<[string, ...string[]]>>;
|
|
9051
9072
|
model: z.ZodOptional<z.ZodString>;
|
|
9052
9073
|
style: z.ZodOptional<z.ZodString>;
|
|
@@ -9178,8 +9199,8 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9178
9199
|
type: "imagePrompt";
|
|
9179
9200
|
prompt: string;
|
|
9180
9201
|
}> | undefined;
|
|
9181
|
-
}
|
|
9182
|
-
movieParams: z.ZodOptional<z.ZodObject<{
|
|
9202
|
+
}>>>;
|
|
9203
|
+
movieParams: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
9183
9204
|
provider: z.ZodOptional<z.ZodDefault<z.ZodEnum<[string, ...string[]]>>>;
|
|
9184
9205
|
model: z.ZodOptional<z.ZodString>;
|
|
9185
9206
|
transition: z.ZodOptional<z.ZodObject<{
|
|
@@ -9219,7 +9240,7 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9219
9240
|
type: "fade" | "slideout_left";
|
|
9220
9241
|
duration?: number | undefined;
|
|
9221
9242
|
} | undefined;
|
|
9222
|
-
}
|
|
9243
|
+
}>>>;
|
|
9223
9244
|
htmlImageParams: z.ZodOptional<z.ZodObject<{
|
|
9224
9245
|
model: z.ZodOptional<z.ZodString>;
|
|
9225
9246
|
} & {
|
|
@@ -9337,6 +9358,31 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9337
9358
|
suppressSpeech?: boolean | undefined;
|
|
9338
9359
|
}>>;
|
|
9339
9360
|
}, "strip", z.ZodTypeAny, {
|
|
9361
|
+
imageParams: {
|
|
9362
|
+
provider: string;
|
|
9363
|
+
model?: string | undefined;
|
|
9364
|
+
style?: string | undefined;
|
|
9365
|
+
moderation?: string | undefined;
|
|
9366
|
+
images?: Record<string, {
|
|
9367
|
+
type: "image";
|
|
9368
|
+
source: {
|
|
9369
|
+
url: string;
|
|
9370
|
+
kind: "url";
|
|
9371
|
+
} | {
|
|
9372
|
+
kind: "base64";
|
|
9373
|
+
data: string;
|
|
9374
|
+
} | {
|
|
9375
|
+
text: string;
|
|
9376
|
+
kind: "text";
|
|
9377
|
+
} | {
|
|
9378
|
+
path: string;
|
|
9379
|
+
kind: "path";
|
|
9380
|
+
};
|
|
9381
|
+
} | {
|
|
9382
|
+
type: "imagePrompt";
|
|
9383
|
+
prompt: string;
|
|
9384
|
+
}> | undefined;
|
|
9385
|
+
};
|
|
9340
9386
|
audioParams: {
|
|
9341
9387
|
padding: number;
|
|
9342
9388
|
introPadding: number;
|
|
@@ -9359,6 +9405,17 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9359
9405
|
kind: "path";
|
|
9360
9406
|
} | undefined;
|
|
9361
9407
|
};
|
|
9408
|
+
movieParams: {
|
|
9409
|
+
provider?: string | undefined;
|
|
9410
|
+
model?: string | undefined;
|
|
9411
|
+
fillOption?: {
|
|
9412
|
+
style: "aspectFit" | "aspectFill";
|
|
9413
|
+
} | undefined;
|
|
9414
|
+
transition?: {
|
|
9415
|
+
type: "fade" | "slideout_left";
|
|
9416
|
+
duration: number;
|
|
9417
|
+
} | undefined;
|
|
9418
|
+
};
|
|
9362
9419
|
$mulmocast: {
|
|
9363
9420
|
version: "1.0";
|
|
9364
9421
|
credit?: "closing" | undefined;
|
|
@@ -9381,42 +9438,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9381
9438
|
}>;
|
|
9382
9439
|
model?: string | undefined;
|
|
9383
9440
|
};
|
|
9384
|
-
imageParams?: {
|
|
9385
|
-
provider: string;
|
|
9386
|
-
model?: string | undefined;
|
|
9387
|
-
style?: string | undefined;
|
|
9388
|
-
moderation?: string | undefined;
|
|
9389
|
-
images?: Record<string, {
|
|
9390
|
-
type: "image";
|
|
9391
|
-
source: {
|
|
9392
|
-
url: string;
|
|
9393
|
-
kind: "url";
|
|
9394
|
-
} | {
|
|
9395
|
-
kind: "base64";
|
|
9396
|
-
data: string;
|
|
9397
|
-
} | {
|
|
9398
|
-
text: string;
|
|
9399
|
-
kind: "text";
|
|
9400
|
-
} | {
|
|
9401
|
-
path: string;
|
|
9402
|
-
kind: "path";
|
|
9403
|
-
};
|
|
9404
|
-
} | {
|
|
9405
|
-
type: "imagePrompt";
|
|
9406
|
-
prompt: string;
|
|
9407
|
-
}> | undefined;
|
|
9408
|
-
} | undefined;
|
|
9409
|
-
movieParams?: {
|
|
9410
|
-
provider?: string | undefined;
|
|
9411
|
-
model?: string | undefined;
|
|
9412
|
-
fillOption?: {
|
|
9413
|
-
style: "aspectFit" | "aspectFill";
|
|
9414
|
-
} | undefined;
|
|
9415
|
-
transition?: {
|
|
9416
|
-
type: "fade" | "slideout_left";
|
|
9417
|
-
duration: number;
|
|
9418
|
-
} | undefined;
|
|
9419
|
-
} | undefined;
|
|
9420
9441
|
htmlImageParams?: {
|
|
9421
9442
|
provider: string;
|
|
9422
9443
|
model?: string | undefined;
|
|
@@ -9530,6 +9551,31 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9530
9551
|
filename: string;
|
|
9531
9552
|
scriptName?: string | undefined;
|
|
9532
9553
|
presentationStyle?: {
|
|
9554
|
+
imageParams: {
|
|
9555
|
+
provider: string;
|
|
9556
|
+
model?: string | undefined;
|
|
9557
|
+
style?: string | undefined;
|
|
9558
|
+
moderation?: string | undefined;
|
|
9559
|
+
images?: Record<string, {
|
|
9560
|
+
type: "image";
|
|
9561
|
+
source: {
|
|
9562
|
+
url: string;
|
|
9563
|
+
kind: "url";
|
|
9564
|
+
} | {
|
|
9565
|
+
kind: "base64";
|
|
9566
|
+
data: string;
|
|
9567
|
+
} | {
|
|
9568
|
+
text: string;
|
|
9569
|
+
kind: "text";
|
|
9570
|
+
} | {
|
|
9571
|
+
path: string;
|
|
9572
|
+
kind: "path";
|
|
9573
|
+
};
|
|
9574
|
+
} | {
|
|
9575
|
+
type: "imagePrompt";
|
|
9576
|
+
prompt: string;
|
|
9577
|
+
}> | undefined;
|
|
9578
|
+
};
|
|
9533
9579
|
audioParams: {
|
|
9534
9580
|
padding: number;
|
|
9535
9581
|
introPadding: number;
|
|
@@ -9552,6 +9598,17 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9552
9598
|
kind: "path";
|
|
9553
9599
|
} | undefined;
|
|
9554
9600
|
};
|
|
9601
|
+
movieParams: {
|
|
9602
|
+
provider?: string | undefined;
|
|
9603
|
+
model?: string | undefined;
|
|
9604
|
+
fillOption?: {
|
|
9605
|
+
style: "aspectFit" | "aspectFill";
|
|
9606
|
+
} | undefined;
|
|
9607
|
+
transition?: {
|
|
9608
|
+
type: "fade" | "slideout_left";
|
|
9609
|
+
duration: number;
|
|
9610
|
+
} | undefined;
|
|
9611
|
+
};
|
|
9555
9612
|
$mulmocast: {
|
|
9556
9613
|
version: "1.0";
|
|
9557
9614
|
credit?: "closing" | undefined;
|
|
@@ -9574,42 +9631,6 @@ export declare const mulmoScriptTemplateFileSchema: z.ZodObject<{
|
|
|
9574
9631
|
}>;
|
|
9575
9632
|
model?: string | undefined;
|
|
9576
9633
|
};
|
|
9577
|
-
imageParams?: {
|
|
9578
|
-
provider: string;
|
|
9579
|
-
model?: string | undefined;
|
|
9580
|
-
style?: string | undefined;
|
|
9581
|
-
moderation?: string | undefined;
|
|
9582
|
-
images?: Record<string, {
|
|
9583
|
-
type: "image";
|
|
9584
|
-
source: {
|
|
9585
|
-
url: string;
|
|
9586
|
-
kind: "url";
|
|
9587
|
-
} | {
|
|
9588
|
-
kind: "base64";
|
|
9589
|
-
data: string;
|
|
9590
|
-
} | {
|
|
9591
|
-
text: string;
|
|
9592
|
-
kind: "text";
|
|
9593
|
-
} | {
|
|
9594
|
-
path: string;
|
|
9595
|
-
kind: "path";
|
|
9596
|
-
};
|
|
9597
|
-
} | {
|
|
9598
|
-
type: "imagePrompt";
|
|
9599
|
-
prompt: string;
|
|
9600
|
-
}> | undefined;
|
|
9601
|
-
} | undefined;
|
|
9602
|
-
movieParams?: {
|
|
9603
|
-
provider?: string | undefined;
|
|
9604
|
-
model?: string | undefined;
|
|
9605
|
-
fillOption?: {
|
|
9606
|
-
style: "aspectFit" | "aspectFill";
|
|
9607
|
-
} | undefined;
|
|
9608
|
-
transition?: {
|
|
9609
|
-
type: "fade" | "slideout_left";
|
|
9610
|
-
duration: number;
|
|
9611
|
-
} | undefined;
|
|
9612
|
-
} | undefined;
|
|
9613
9634
|
htmlImageParams?: {
|
|
9614
9635
|
provider: string;
|
|
9615
9636
|
model?: string | undefined;
|