mulmocast 1.2.7 → 1.2.8
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.
|
@@ -51,8 +51,8 @@ export const FfmpegContextGenerateOutput = (context, output, options = []) => {
|
|
|
51
51
|
GraphAILogger.error("Error occurred:", err);
|
|
52
52
|
GraphAILogger.error("FFmpeg stdout:", stdout);
|
|
53
53
|
GraphAILogger.error("FFmpeg stderr:", stderr);
|
|
54
|
-
GraphAILogger.info("Video/Audio creation failed.
|
|
55
|
-
reject();
|
|
54
|
+
GraphAILogger.info("Video/Audio creation failed.", err.message);
|
|
55
|
+
reject(err);
|
|
56
56
|
})
|
|
57
57
|
.on("end", () => {
|
|
58
58
|
resolve(0);
|
package/package.json
CHANGED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$mulmocast": {
|
|
3
|
+
"version": "1.1",
|
|
4
|
+
"credit": "closing"
|
|
5
|
+
},
|
|
6
|
+
"canvasSize": {
|
|
7
|
+
"width": 1024,
|
|
8
|
+
"height": 1
|
|
9
|
+
},
|
|
10
|
+
"speechParams": {
|
|
11
|
+
"speakers": {
|
|
12
|
+
"Presenter": {
|
|
13
|
+
"displayName": {
|
|
14
|
+
"en": "Presenter"
|
|
15
|
+
},
|
|
16
|
+
"voiceId": "shimmer"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"imageParams": {
|
|
21
|
+
"provider": "openai",
|
|
22
|
+
"quality": "low"
|
|
23
|
+
},
|
|
24
|
+
"movieParams": {
|
|
25
|
+
"provider": "replicate"
|
|
26
|
+
},
|
|
27
|
+
"soundEffectParams": {
|
|
28
|
+
"provider": "replicate"
|
|
29
|
+
},
|
|
30
|
+
"audioParams": {
|
|
31
|
+
"padding": 0.3,
|
|
32
|
+
"introPadding": 1,
|
|
33
|
+
"closingPadding": 0.8,
|
|
34
|
+
"outroPadding": 1,
|
|
35
|
+
"bgmVolume": 0.2,
|
|
36
|
+
"audioVolume": 1,
|
|
37
|
+
"suppressSpeech": false
|
|
38
|
+
},
|
|
39
|
+
"title": "1024 x 1",
|
|
40
|
+
"description": "mulmocast",
|
|
41
|
+
"lang": "en",
|
|
42
|
+
"beats": [
|
|
43
|
+
{
|
|
44
|
+
"speaker": "Presenter",
|
|
45
|
+
"text": "Hello World",
|
|
46
|
+
"id": "afbfa590-b787-472b-a250-fc9e9bda4610",
|
|
47
|
+
"imagePrompt": "A dog and a cat"
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|