mulmocast 2.1.0 → 2.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mulmocast",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "lib/index.node.js",
@@ -74,7 +74,7 @@
74
74
  "homepage": "https://github.com/receptron/mulmocast-cli#readme",
75
75
  "dependencies": {
76
76
  "@google-cloud/text-to-speech": "^6.4.0",
77
- "@google/genai": "^1.30.0",
77
+ "@google/genai": "^1.32.0",
78
78
  "@graphai/anthropic_agent": "^2.0.12",
79
79
  "@graphai/browserless_agent": "^2.0.1",
80
80
  "@graphai/gemini_agent": "^2.0.1",
@@ -94,11 +94,11 @@
94
94
  "dotenv": "^17.2.3",
95
95
  "fluent-ffmpeg": "^2.1.3",
96
96
  "graphai": "^2.0.16",
97
- "jsdom": "^27.2.0",
97
+ "jsdom": "^27.3.0",
98
98
  "marked": "^17.0.1",
99
99
  "mulmocast-vision": "^1.0.8",
100
100
  "ora": "^9.0.0",
101
- "puppeteer": "^24.32.0",
101
+ "puppeteer": "^24.32.1",
102
102
  "replicate": "^1.4.0",
103
103
  "yaml": "^2.8.2",
104
104
  "yargs": "^18.0.0",
@@ -117,7 +117,7 @@
117
117
  "prettier": "^3.7.4",
118
118
  "tsx": "^4.21.0",
119
119
  "typescript": "^5.9.3",
120
- "typescript-eslint": "^8.48.1"
120
+ "typescript-eslint": "^8.49.0"
121
121
  },
122
122
  "engines": {
123
123
  "node": ">=20.0.0"
@@ -0,0 +1,510 @@
1
+ {
2
+ "$mulmocast": {
3
+ "version": "1.1"
4
+ },
5
+ "lang": "en",
6
+ "title": "Video Filter Test",
7
+ "speechParams": {
8
+ "speakers": {
9
+ "Presenter": {
10
+ "voiceId": "shimmer",
11
+ "displayName": {
12
+ "en": "Presenter"
13
+ }
14
+ }
15
+ }
16
+ },
17
+ "beats": [
18
+ {
19
+ "speaker": "Presenter",
20
+ "text": "Original.",
21
+ "image": {
22
+ "type": "movie",
23
+ "source": {
24
+ "kind": "url",
25
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
26
+ }
27
+ }
28
+ },
29
+ {
30
+ "speaker": "Presenter",
31
+ "text": "Mono filter.",
32
+ "movieParams": {
33
+ "filters": [
34
+ {
35
+ "type": "mono"
36
+ }
37
+ ]
38
+ },
39
+ "image": {
40
+ "type": "movie",
41
+ "source": {
42
+ "kind": "url",
43
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
44
+ }
45
+ }
46
+ },
47
+ {
48
+ "speaker": "Presenter",
49
+ "text": "Sepia filter.",
50
+ "movieParams": {
51
+ "filters": [
52
+ {
53
+ "type": "sepia"
54
+ }
55
+ ]
56
+ },
57
+ "image": {
58
+ "type": "movie",
59
+ "source": {
60
+ "kind": "url",
61
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
62
+ }
63
+ }
64
+ },
65
+ {
66
+ "speaker": "Presenter",
67
+ "text": "Brightness and contrast filter.",
68
+ "movieParams": {
69
+ "filters": [
70
+ {
71
+ "type": "brightness_contrast",
72
+ "brightness": 0.5,
73
+ "contrast": 1.3
74
+ }
75
+ ]
76
+ },
77
+ "image": {
78
+ "type": "movie",
79
+ "source": {
80
+ "kind": "url",
81
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
82
+ }
83
+ }
84
+ },
85
+ {
86
+ "speaker": "Presenter",
87
+ "text": "Box blur filter.",
88
+ "movieParams": {
89
+ "filters": [
90
+ {
91
+ "type": "blur",
92
+ "radius": 10,
93
+ "power": 1
94
+ }
95
+ ]
96
+ },
97
+ "image": {
98
+ "type": "movie",
99
+ "source": {
100
+ "kind": "url",
101
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
102
+ }
103
+ }
104
+ },
105
+ {
106
+ "speaker": "Presenter",
107
+ "text": "Gaussian blur filter.",
108
+ "movieParams": {
109
+ "filters": [
110
+ {
111
+ "type": "gblur",
112
+ "sigma": 30
113
+ }
114
+ ]
115
+ },
116
+ "image": {
117
+ "type": "movie",
118
+ "source": {
119
+ "kind": "url",
120
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
121
+ }
122
+ }
123
+ },
124
+ {
125
+ "speaker": "Presenter",
126
+ "text": "Glitch noise filter.",
127
+ "movieParams": {
128
+ "filters": [
129
+ {
130
+ "type": "glitch",
131
+ "intensity": 40,
132
+ "style": "noise"
133
+ }
134
+ ]
135
+ },
136
+ "image": {
137
+ "type": "movie",
138
+ "source": {
139
+ "kind": "url",
140
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
141
+ }
142
+ }
143
+ },
144
+ {
145
+ "speaker": "Presenter",
146
+ "text": "Glitch blend filter.",
147
+ "movieParams": {
148
+ "filters": [
149
+ {
150
+ "type": "glitch",
151
+ "intensity": 40,
152
+ "style": "blend"
153
+ }
154
+ ]
155
+ },
156
+ "image": {
157
+ "type": "movie",
158
+ "source": {
159
+ "kind": "url",
160
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
161
+ }
162
+ }
163
+ },
164
+ {
165
+ "speaker": "Presenter",
166
+ "text": "Grain filter.",
167
+ "movieParams": {
168
+ "filters": [
169
+ {
170
+ "type": "grain",
171
+ "intensity": 50
172
+ }
173
+ ]
174
+ },
175
+ "image": {
176
+ "type": "movie",
177
+ "source": {
178
+ "kind": "url",
179
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
180
+ }
181
+ }
182
+ },
183
+ {
184
+ "speaker": "Presenter",
185
+ "text": "Combined contrast and grain filters.",
186
+ "movieParams": {
187
+ "filters": [
188
+ {
189
+ "type": "brightness_contrast",
190
+ "brightness": 0,
191
+ "contrast": 1.2
192
+ },
193
+ {
194
+ "type": "grain",
195
+ "intensity": 20
196
+ }
197
+ ]
198
+ },
199
+ "image": {
200
+ "type": "movie",
201
+ "source": {
202
+ "kind": "url",
203
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
204
+ }
205
+ }
206
+ },
207
+ {
208
+ "speaker": "Presenter",
209
+ "text": "Custom horizontal flip filter.",
210
+ "movieParams": {
211
+ "filters": [
212
+ {
213
+ "type": "custom",
214
+ "filter": "hflip"
215
+ }
216
+ ]
217
+ },
218
+ "image": {
219
+ "type": "movie",
220
+ "source": {
221
+ "kind": "url",
222
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
223
+ }
224
+ }
225
+ },
226
+ {
227
+ "speaker": "Presenter",
228
+ "text": "Hue shift: green tone.",
229
+ "movieParams": {
230
+ "filters": [
231
+ {
232
+ "type": "hue",
233
+ "hue": 120,
234
+ "saturation": 1.8
235
+ }
236
+ ]
237
+ },
238
+ "image": {
239
+ "type": "movie",
240
+ "source": {
241
+ "kind": "url",
242
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
243
+ }
244
+ }
245
+ },
246
+ {
247
+ "speaker": "Presenter",
248
+ "text": "Vibrance: boosted saturation.",
249
+ "movieParams": {
250
+ "filters": [
251
+ {
252
+ "type": "vibrance",
253
+ "intensity": 1.8
254
+ }
255
+ ]
256
+ },
257
+ "image": {
258
+ "type": "movie",
259
+ "source": {
260
+ "kind": "url",
261
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
262
+ }
263
+ }
264
+ },
265
+ {
266
+ "speaker": "Presenter",
267
+ "text": "Negate: inverted colors.",
268
+ "movieParams": {
269
+ "filters": [
270
+ {
271
+ "type": "negate"
272
+ }
273
+ ]
274
+ },
275
+ "image": {
276
+ "type": "movie",
277
+ "source": {
278
+ "kind": "url",
279
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
280
+ }
281
+ }
282
+ },
283
+ {
284
+ "speaker": "Presenter",
285
+ "text": "Unsharp mask: enhanced sharpness.",
286
+ "movieParams": {
287
+ "filters": [
288
+ {
289
+ "type": "unsharp",
290
+ "luma_amount": 3
291
+ }
292
+ ]
293
+ },
294
+ "image": {
295
+ "type": "movie",
296
+ "source": {
297
+ "kind": "url",
298
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
299
+ }
300
+ }
301
+ },
302
+ {
303
+ "speaker": "Presenter",
304
+ "text": "Edge detection: wires mode.",
305
+ "movieParams": {
306
+ "filters": [
307
+ {
308
+ "type": "edgedetect",
309
+ "mode": "wires"
310
+ }
311
+ ]
312
+ },
313
+ "image": {
314
+ "type": "movie",
315
+ "source": {
316
+ "kind": "url",
317
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
318
+ }
319
+ }
320
+ },
321
+ {
322
+ "speaker": "Presenter",
323
+ "text": "Sobel: edge detection filter.",
324
+ "movieParams": {
325
+ "filters": [
326
+ {
327
+ "type": "sobel"
328
+ }
329
+ ]
330
+ },
331
+ "image": {
332
+ "type": "movie",
333
+ "source": {
334
+ "kind": "url",
335
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
336
+ }
337
+ }
338
+ },
339
+ {
340
+ "speaker": "Presenter",
341
+ "text": "Emboss: three D effect.",
342
+ "movieParams": {
343
+ "filters": [
344
+ {
345
+ "type": "emboss"
346
+ }
347
+ ]
348
+ },
349
+ "image": {
350
+ "type": "movie",
351
+ "source": {
352
+ "kind": "url",
353
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
354
+ }
355
+ }
356
+ },
357
+ {
358
+ "speaker": "Presenter",
359
+ "text": "Vertical flip: upside down.",
360
+ "movieParams": {
361
+ "filters": [
362
+ {
363
+ "type": "vflip"
364
+ }
365
+ ]
366
+ },
367
+ "image": {
368
+ "type": "movie",
369
+ "source": {
370
+ "kind": "url",
371
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
372
+ }
373
+ }
374
+ },
375
+ {
376
+ "speaker": "Presenter",
377
+ "text": "Vignette: darkened corners.",
378
+ "movieParams": {
379
+ "filters": [
380
+ {
381
+ "type": "vignette"
382
+ }
383
+ ]
384
+ },
385
+ "image": {
386
+ "type": "movie",
387
+ "source": {
388
+ "kind": "url",
389
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
390
+ }
391
+ }
392
+ },
393
+ {
394
+ "speaker": "Presenter",
395
+ "text": "Pixelize: mosaic effect.",
396
+ "movieParams": {
397
+ "filters": [
398
+ {
399
+ "type": "pixelize",
400
+ "width": 20,
401
+ "height": 20
402
+ }
403
+ ]
404
+ },
405
+ "image": {
406
+ "type": "movie",
407
+ "source": {
408
+ "kind": "url",
409
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
410
+ }
411
+ }
412
+ },
413
+ {
414
+ "speaker": "Presenter",
415
+ "text": "Pseudo color: magma heat map.",
416
+ "movieParams": {
417
+ "filters": [
418
+ {
419
+ "type": "pseudocolor",
420
+ "preset": "magma"
421
+ }
422
+ ]
423
+ },
424
+ "image": {
425
+ "type": "movie",
426
+ "source": {
427
+ "kind": "url",
428
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
429
+ }
430
+ }
431
+ },
432
+ {
433
+ "speaker": "Presenter",
434
+ "text": "Pseudo color: viridis gradient.",
435
+ "movieParams": {
436
+ "filters": [
437
+ {
438
+ "type": "pseudocolor",
439
+ "preset": "viridis"
440
+ }
441
+ ]
442
+ },
443
+ "image": {
444
+ "type": "movie",
445
+ "source": {
446
+ "kind": "url",
447
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
448
+ }
449
+ }
450
+ },
451
+ {
452
+ "speaker": "Presenter",
453
+ "text": "Posterize: reduced color levels.",
454
+ "movieParams": {
455
+ "filters": [
456
+ {
457
+ "type": "elbg",
458
+ "codebook_length": 16
459
+ }
460
+ ]
461
+ },
462
+ "image": {
463
+ "type": "movie",
464
+ "source": {
465
+ "kind": "url",
466
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
467
+ }
468
+ }
469
+ },
470
+ {
471
+ "speaker": "Presenter",
472
+ "text": "Chroma shift: color separation.",
473
+ "movieParams": {
474
+ "filters": [
475
+ {
476
+ "type": "chromashift",
477
+ "cbh": 5,
478
+ "crh": -5
479
+ }
480
+ ]
481
+ },
482
+ "image": {
483
+ "type": "movie",
484
+ "source": {
485
+ "kind": "url",
486
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
487
+ }
488
+ }
489
+ },
490
+ {
491
+ "speaker": "Presenter",
492
+ "text": "Lag fun: motion trail effect.",
493
+ "movieParams": {
494
+ "filters": [
495
+ {
496
+ "type": "lagfun",
497
+ "decay": 0.85
498
+ }
499
+ ]
500
+ },
501
+ "image": {
502
+ "type": "movie",
503
+ "source": {
504
+ "kind": "url",
505
+ "url": "https://github.com/receptron/mulmocast-media/raw/refs/heads/main/movies/horse_galloping.mov"
506
+ }
507
+ }
508
+ }
509
+ ]
510
+ }