@htmlbricks/hb-editor-video 0.68.1 → 0.68.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/main.iife.js +1 -1
- package/main.iife.js.map +1 -1
- package/manifest.json +38 -2
- package/package.json +1 -1
package/manifest.json
CHANGED
|
@@ -147,6 +147,7 @@
|
|
|
147
147
|
"examples": [
|
|
148
148
|
{
|
|
149
149
|
"name": "default",
|
|
150
|
+
"description": "MP4 source with a short in/out window (seconds).",
|
|
150
151
|
"data": {
|
|
151
152
|
"id": "BasicVideoeditorWithTrack",
|
|
152
153
|
"track": {
|
|
@@ -155,9 +156,44 @@
|
|
|
155
156
|
},
|
|
156
157
|
"src": "https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4"
|
|
157
158
|
}
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"name": "wideRange",
|
|
162
|
+
"description": "Larger trim span on the same asset.",
|
|
163
|
+
"data": {
|
|
164
|
+
"src": "https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4",
|
|
165
|
+
"track": {
|
|
166
|
+
"minValue": 0,
|
|
167
|
+
"maxValue": 120
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "withFormGate",
|
|
173
|
+
"description": "Submit gated by a small JSON `form` schema string.",
|
|
174
|
+
"data": {
|
|
175
|
+
"src": "https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4",
|
|
176
|
+
"track": {
|
|
177
|
+
"minValue": 0,
|
|
178
|
+
"maxValue": 5
|
|
179
|
+
},
|
|
180
|
+
"form": "[{\"type\":\"text\",\"id\":\"clipTitle\",\"label\":\"Clip title\",\"required\":false,\"value\":\"\",\"placeholder\":\"Optional label\"}]"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "fullWindow",
|
|
185
|
+
"description": "In and out at the ends of a typical short clip.",
|
|
186
|
+
"data": {
|
|
187
|
+
"id": "VideoEditorFullWindow",
|
|
188
|
+
"src": "https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4",
|
|
189
|
+
"track": {
|
|
190
|
+
"minValue": 0,
|
|
191
|
+
"maxValue": 600
|
|
192
|
+
}
|
|
193
|
+
}
|
|
158
194
|
}
|
|
159
195
|
],
|
|
160
|
-
"iifeIntegrity": "sha384-
|
|
196
|
+
"iifeIntegrity": "sha384-kC6O+pddPofbwD/yE8dNBvSQacyfr9Lg50oZ54kLmp+maTmLR6l4UJOD1QchKkEw",
|
|
161
197
|
"dependencies": [
|
|
162
198
|
{
|
|
163
199
|
"name": "hb-range-slider",
|
|
@@ -311,5 +347,5 @@
|
|
|
311
347
|
"size": {},
|
|
312
348
|
"iifePath": "main.iife.js",
|
|
313
349
|
"repoName": "@htmlbricks/hb-editor-video",
|
|
314
|
-
"version": "0.68.
|
|
350
|
+
"version": "0.68.2"
|
|
315
351
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlbricks/hb-editor-video",
|
|
3
|
-
"version": "0.68.
|
|
3
|
+
"version": "0.68.2",
|
|
4
4
|
"contributors": [],
|
|
5
5
|
"description": "Video trimmer UI: plays `src` with an `hb-range-slider` synced to the playhead and in/out bounds (`track` min/max seconds). Numeric time fields, cue-to-current-time buttons, and optional `hb-form` gate final submission. Emits `changeTrackValues`, `dispatchTrack` when no form is used, and form-driven submit when metadata is valid. Bulma `card`, `image is-16by9`, `button`, and `input` for chrome (Bootstrap Icons for play/pause).",
|
|
6
6
|
"licenses": [
|