@gradio/video 0.1.4 → 0.1.5
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/CHANGELOG.md +7 -1
- package/package.json +10 -5
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# @gradio/video
|
2
2
|
|
3
|
+
## 0.1.5
|
4
|
+
|
5
|
+
### Features
|
6
|
+
|
7
|
+
- [#6406](https://github.com/gradio-app/gradio/pull/6406) [`0401c77f3`](https://github.com/gradio-app/gradio/commit/0401c77f3d35763b79e040dbe876e69083defd36) - Move ffmpeg to `Video` deps. Thanks [@hannahblair](https://github.com/hannahblair)!
|
8
|
+
|
3
9
|
## 0.1.4
|
4
10
|
|
5
11
|
### Patch Changes
|
@@ -191,4 +197,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
|
|
191
197
|
- @gradio/image@0.1.0
|
192
198
|
- @gradio/utils@0.0.2
|
193
199
|
- @gradio/atoms@0.0.2
|
194
|
-
- @gradio/upload@0.0.2
|
200
|
+
- @gradio/upload@0.0.2
|
package/package.json
CHANGED
@@ -1,20 +1,25 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/video",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.5",
|
4
4
|
"description": "Gradio UI packages",
|
5
5
|
"type": "module",
|
6
6
|
"author": "",
|
7
7
|
"license": "ISC",
|
8
8
|
"private": false,
|
9
9
|
"dependencies": {
|
10
|
+
"@ffmpeg/ffmpeg": "^0.12.7",
|
11
|
+
"@ffmpeg/util": "^0.12.1",
|
12
|
+
"@gradio/client": "^0.8.1",
|
10
13
|
"@gradio/atoms": "^0.2.1",
|
11
|
-
"@gradio/client": "^0.8.0",
|
12
14
|
"@gradio/icons": "^0.2.0",
|
13
|
-
"@gradio/image": "^0.3.4",
|
14
15
|
"@gradio/statustracker": "^0.3.1",
|
15
|
-
"@gradio/
|
16
|
+
"@gradio/image": "^0.3.5",
|
17
|
+
"@gradio/upload": "^0.4.1",
|
16
18
|
"@gradio/utils": "^0.2.0",
|
17
|
-
"@gradio/wasm": "^0.
|
19
|
+
"@gradio/wasm": "^0.3.0"
|
20
|
+
},
|
21
|
+
"devDependencies": {
|
22
|
+
"mrmime": "^1.0.1"
|
18
23
|
},
|
19
24
|
"exports": {
|
20
25
|
".": "./index.ts",
|