mulmocast 2.0.9 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,227 @@
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.05,
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": 20,
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": 10
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": 6
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
+ }
@@ -0,0 +1,37 @@
1
+ {
2
+ "$mulmocast": {
3
+ "version": "1.1"
4
+ },
5
+ "lang": "en",
6
+ "title": "Wipe Test",
7
+ "beats": [
8
+ {
9
+ "speaker": "Presenter",
10
+ "text": "",
11
+ "duration": 1,
12
+ "image": {
13
+ "type": "textSlide",
14
+ "slide": {
15
+ "title": "First"
16
+ }
17
+ }
18
+ },
19
+ {
20
+ "speaker": "Presenter",
21
+ "text": "",
22
+ "duration": 1,
23
+ "movieParams": {
24
+ "transition": {
25
+ "type": "wipeleft",
26
+ "duration": 0.5
27
+ }
28
+ },
29
+ "image": {
30
+ "type": "textSlide",
31
+ "slide": {
32
+ "title": "Second"
33
+ }
34
+ }
35
+ }
36
+ ]
37
+ }