flet-video 0.70.0.dev6301__tar.gz → 0.70.0.dev6316__tar.gz
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.
Potentially problematic release.
This version of flet-video might be problematic. Click here for more details.
- {flet_video-0.70.0.dev6301/src/flet_video.egg-info → flet_video-0.70.0.dev6316}/PKG-INFO +17 -3
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/README.md +15 -1
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/pyproject.toml +2 -2
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316/src/flet_video.egg-info}/PKG-INFO +17 -3
- flet_video-0.70.0.dev6316/src/flet_video.egg-info/requires.txt +1 -0
- flet_video-0.70.0.dev6301/src/flet_video.egg-info/requires.txt +0 -1
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/LICENSE +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/setup.cfg +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flet_video/__init__.py +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flet_video/types.py +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flet_video/video.py +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flet_video.egg-info/SOURCES.txt +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flet_video.egg-info/dependency_links.txt +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flet_video.egg-info/top_level.txt +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flutter/flet_video/LICENSE +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flutter/flet_video/analysis_options.yaml +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flutter/flet_video/lib/flet_video.dart +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flutter/flet_video/lib/src/extension.dart +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flutter/flet_video/lib/src/utils/file_utils_io.dart +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flutter/flet_video/lib/src/utils/file_utils_web.dart +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flutter/flet_video/lib/src/utils/video.dart +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flutter/flet_video/lib/src/video.dart +0 -0
- {flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flutter/flet_video/pubspec.yaml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flet-video
|
|
3
|
-
Version: 0.70.0.
|
|
3
|
+
Version: 0.70.0.dev6316
|
|
4
4
|
Summary: Cross-platform video playback for Flet apps.
|
|
5
5
|
Author-email: Flet contributors <hello@flet.dev>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -11,14 +11,14 @@ Project-URL: Issues, https://github.com/flet-dev/flet/issues
|
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: flet==0.70.0.
|
|
14
|
+
Requires-Dist: flet==0.70.0.dev6316
|
|
15
15
|
Dynamic: license-file
|
|
16
16
|
|
|
17
17
|
# flet-video
|
|
18
18
|
|
|
19
19
|
[](https://pypi.python.org/pypi/flet-video)
|
|
20
20
|
[](https://pepy.tech/project/flet-video)
|
|
21
|
-
[](https://github.com/flet-dev/flet/blob/main/sdk/python/packages/flet-video/LICENSE)
|
|
22
22
|
|
|
23
23
|
A cross-platform video player for [Flet](https://flet.dev) apps.
|
|
24
24
|
|
|
@@ -51,6 +51,20 @@ To install the `flet-video` package and add it to your project dependencies:
|
|
|
51
51
|
```
|
|
52
52
|
After this, you will have to manually add this package to your `requirements.txt` or `pyproject.toml`.
|
|
53
53
|
|
|
54
|
+
> [!NOTE]
|
|
55
|
+
> To play video on Linux/WSL you need to install [`libmpv`](https://github.com/mpv-player/mpv) library:
|
|
56
|
+
>
|
|
57
|
+
> ```bash
|
|
58
|
+
> sudo apt update
|
|
59
|
+
> sudo apt install libmpv-dev libmpv2
|
|
60
|
+
> ```
|
|
61
|
+
>
|
|
62
|
+
> If you encounter `libmpv.so.1` load errors, run:
|
|
63
|
+
>
|
|
64
|
+
> ```bash
|
|
65
|
+
> sudo ln -s /usr/lib/x86_64-linux-gnu/libmpv.so /usr/lib/libmpv.so.1
|
|
66
|
+
> ```
|
|
67
|
+
|
|
54
68
|
### Examples
|
|
55
69
|
|
|
56
70
|
For examples, see [these](https://github.com/flet-dev/flet/tree/main/sdk/python/examples/controls/video).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://pypi.python.org/pypi/flet-video)
|
|
4
4
|
[](https://pepy.tech/project/flet-video)
|
|
5
|
-
[](https://github.com/flet-dev/flet/blob/main/sdk/python/packages/flet-video/LICENSE)
|
|
6
6
|
|
|
7
7
|
A cross-platform video player for [Flet](https://flet.dev) apps.
|
|
8
8
|
|
|
@@ -35,6 +35,20 @@ To install the `flet-video` package and add it to your project dependencies:
|
|
|
35
35
|
```
|
|
36
36
|
After this, you will have to manually add this package to your `requirements.txt` or `pyproject.toml`.
|
|
37
37
|
|
|
38
|
+
> [!NOTE]
|
|
39
|
+
> To play video on Linux/WSL you need to install [`libmpv`](https://github.com/mpv-player/mpv) library:
|
|
40
|
+
>
|
|
41
|
+
> ```bash
|
|
42
|
+
> sudo apt update
|
|
43
|
+
> sudo apt install libmpv-dev libmpv2
|
|
44
|
+
> ```
|
|
45
|
+
>
|
|
46
|
+
> If you encounter `libmpv.so.1` load errors, run:
|
|
47
|
+
>
|
|
48
|
+
> ```bash
|
|
49
|
+
> sudo ln -s /usr/lib/x86_64-linux-gnu/libmpv.so /usr/lib/libmpv.so.1
|
|
50
|
+
> ```
|
|
51
|
+
|
|
38
52
|
### Examples
|
|
39
53
|
|
|
40
54
|
For examples, see [these](https://github.com/flet-dev/flet/tree/main/sdk/python/examples/controls/video).
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "flet-video"
|
|
3
|
-
version = "0.70.0.
|
|
3
|
+
version = "0.70.0.dev6316"
|
|
4
4
|
description = "Cross-platform video playback for Flet apps."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Flet contributors", email = "hello@flet.dev" }]
|
|
7
7
|
license = "Apache-2.0"
|
|
8
8
|
requires-python = ">=3.10"
|
|
9
9
|
dependencies = [
|
|
10
|
-
"flet==0.70.0.
|
|
10
|
+
"flet==0.70.0.dev6316",
|
|
11
11
|
]
|
|
12
12
|
|
|
13
13
|
[project.urls]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flet-video
|
|
3
|
-
Version: 0.70.0.
|
|
3
|
+
Version: 0.70.0.dev6316
|
|
4
4
|
Summary: Cross-platform video playback for Flet apps.
|
|
5
5
|
Author-email: Flet contributors <hello@flet.dev>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -11,14 +11,14 @@ Project-URL: Issues, https://github.com/flet-dev/flet/issues
|
|
|
11
11
|
Requires-Python: >=3.10
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: flet==0.70.0.
|
|
14
|
+
Requires-Dist: flet==0.70.0.dev6316
|
|
15
15
|
Dynamic: license-file
|
|
16
16
|
|
|
17
17
|
# flet-video
|
|
18
18
|
|
|
19
19
|
[](https://pypi.python.org/pypi/flet-video)
|
|
20
20
|
[](https://pepy.tech/project/flet-video)
|
|
21
|
-
[](https://github.com/flet-dev/flet/blob/main/sdk/python/packages/flet-video/LICENSE)
|
|
22
22
|
|
|
23
23
|
A cross-platform video player for [Flet](https://flet.dev) apps.
|
|
24
24
|
|
|
@@ -51,6 +51,20 @@ To install the `flet-video` package and add it to your project dependencies:
|
|
|
51
51
|
```
|
|
52
52
|
After this, you will have to manually add this package to your `requirements.txt` or `pyproject.toml`.
|
|
53
53
|
|
|
54
|
+
> [!NOTE]
|
|
55
|
+
> To play video on Linux/WSL you need to install [`libmpv`](https://github.com/mpv-player/mpv) library:
|
|
56
|
+
>
|
|
57
|
+
> ```bash
|
|
58
|
+
> sudo apt update
|
|
59
|
+
> sudo apt install libmpv-dev libmpv2
|
|
60
|
+
> ```
|
|
61
|
+
>
|
|
62
|
+
> If you encounter `libmpv.so.1` load errors, run:
|
|
63
|
+
>
|
|
64
|
+
> ```bash
|
|
65
|
+
> sudo ln -s /usr/lib/x86_64-linux-gnu/libmpv.so /usr/lib/libmpv.so.1
|
|
66
|
+
> ```
|
|
67
|
+
|
|
54
68
|
### Examples
|
|
55
69
|
|
|
56
70
|
For examples, see [these](https://github.com/flet-dev/flet/tree/main/sdk/python/examples/controls/video).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
flet==0.70.0.dev6316
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
flet==0.70.0.dev6301
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flet_video.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flet_video.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
{flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flutter/flet_video/analysis_options.yaml
RENAMED
|
File without changes
|
{flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flutter/flet_video/lib/flet_video.dart
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{flet_video-0.70.0.dev6301 → flet_video-0.70.0.dev6316}/src/flutter/flet_video/lib/src/video.dart
RENAMED
|
File without changes
|
|
File without changes
|