@gradio/video 0.1.3 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +17 -2
  2. package/package.json +10 -5
package/CHANGELOG.md CHANGED
@@ -1,16 +1,31 @@
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
+
9
+ ## 0.1.4
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [[`6204ccac5`](https://github.com/gradio-app/gradio/commit/6204ccac5967763e0ebde550d04d12584243a120), [`4d3aad33a`](https://github.com/gradio-app/gradio/commit/4d3aad33a0b66639dbbb2928f305a79fb7789b2d), [`854b482f5`](https://github.com/gradio-app/gradio/commit/854b482f598e0dc47673846631643c079576da9c), [`f1409f95e`](https://github.com/gradio-app/gradio/commit/f1409f95ed39c5565bed6a601e41f94e30196a57)]:
14
+ - @gradio/image@0.3.4
15
+ - @gradio/upload@0.4.0
16
+ - @gradio/client@0.8.0
17
+
3
18
  ## 0.1.3
4
19
 
5
20
  ### Fixes
6
21
 
7
- - [#6279](https://github.com/gradio-app/gradio/pull/6279) [`3cdeabc68`](https://github.com/gradio-app/gradio/commit/3cdeabc6843000310e1a9e1d17190ecbf3bbc780) - Ensure source selection does not get hidden in overflow. Thanks [@hannahblair](https://github.com/hannahblair)!
22
+ - [#6279](https://github.com/gradio-app/gradio/pull/6279) [`3cdeabc68`](https://github.com/gradio-app/gradio/commit/3cdeabc6843000310e1a9e1d17190ecbf3bbc780) - Ensure source selection does not get hidden in overflow. Thanks [@hannahblair](https://github.com/hannahblair)!
8
23
 
9
24
  ## 0.1.2
10
25
 
11
26
  ### Fixes
12
27
 
13
- - [#6234](https://github.com/gradio-app/gradio/pull/6234) [`aaa55ce85`](https://github.com/gradio-app/gradio/commit/aaa55ce85e12f95aba9299445e9c5e59824da18e) - Video/Audio fixes. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
28
+ - [#6234](https://github.com/gradio-app/gradio/pull/6234) [`aaa55ce85`](https://github.com/gradio-app/gradio/commit/aaa55ce85e12f95aba9299445e9c5e59824da18e) - Video/Audio fixes. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
14
29
 
15
30
  ## 0.1.1
16
31
 
package/package.json CHANGED
@@ -1,20 +1,25 @@
1
1
  {
2
2
  "name": "@gradio/video",
3
- "version": "0.1.3",
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.7.2",
12
14
  "@gradio/icons": "^0.2.0",
13
- "@gradio/image": "^0.3.3",
14
15
  "@gradio/statustracker": "^0.3.1",
15
- "@gradio/upload": "^0.3.3",
16
+ "@gradio/image": "^0.3.5",
17
+ "@gradio/upload": "^0.4.1",
16
18
  "@gradio/utils": "^0.2.0",
17
- "@gradio/wasm": "^0.2.0"
19
+ "@gradio/wasm": "^0.3.0"
20
+ },
21
+ "devDependencies": {
22
+ "mrmime": "^1.0.1"
18
23
  },
19
24
  "exports": {
20
25
  ".": "./index.ts",