tiny-dlna 0.7.2__tar.gz → 0.7.3__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.
- tiny-dlna-0.7.3/LICENSE +21 -0
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/PKG-INFO +6 -5
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/setup.py +5 -5
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/tiny_dlna.egg-info/PKG-INFO +6 -5
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/tiny_dlna.egg-info/SOURCES.txt +1 -0
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/README.md +0 -0
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/setup.cfg +0 -0
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/tiny_dlna/__init__.py +0 -0
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/tiny_dlna/tiny_cli.py +0 -0
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/tiny_dlna/tiny_render.py +0 -0
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/tiny_dlna/tiny_ssdp.py +0 -0
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/tiny_dlna/tiny_xmls.py +0 -0
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/tiny_dlna.egg-info/dependency_links.txt +0 -0
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/tiny_dlna.egg-info/entry_points.txt +0 -0
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/tiny_dlna.egg-info/requires.txt +0 -0
- {tiny-dlna-0.7.2 → tiny-dlna-0.7.3}/tiny_dlna.egg-info/top_level.txt +0 -0
tiny-dlna-0.7.3/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2017 Hugo Wang
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tiny-dlna
|
|
3
|
-
Version: 0.7.
|
|
4
|
-
Summary: a tiny DLNA receiver
|
|
3
|
+
Version: 0.7.3
|
|
4
|
+
Summary: a tiny DLNA sender & receiver
|
|
5
5
|
Home-page: https://github.com/mitnk/tiny-dlna
|
|
6
6
|
Author: mitnk
|
|
7
7
|
License: MIT
|
|
8
8
|
Keywords: dlna
|
|
9
|
+
License-File: LICENSE
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
Home Page: https://github.com/mitnk/tiny-dlna
|
|
12
13
|
|
|
13
|
-
A tiny DLNA receiver.
|
|
14
|
+
A tiny DLNA sender & receiver.
|
|
14
15
|
|
|
15
16
|
Install
|
|
16
17
|
-------
|
|
@@ -28,7 +29,7 @@ Usages
|
|
|
28
29
|
|
|
29
30
|
This will activate a DLNA receiver named "Tiny Render", which can stream videos
|
|
30
31
|
from apps like 虎牙直播, Bilibili, and other video platforms. Additionally, you
|
|
31
|
-
can also use `
|
|
32
|
+
can also use `tiny-cli` to play local videos (like in your RaspberryPi) on it.
|
|
32
33
|
|
|
33
34
|
Note: mpv needs to be installed on your system.
|
|
34
35
|
|
|
@@ -42,4 +43,4 @@ List available DLNA devices.
|
|
|
42
43
|
|
|
43
44
|
$ tiny-cli play ~/Movies/foo/bar.mp4 -q 'TV'
|
|
44
45
|
|
|
45
|
-
Play video on the DLNA device having "TV" in its name.
|
|
46
|
+
Play a video on the DLNA device having "TV" in its name.
|
|
@@ -3,7 +3,7 @@ from setuptools import setup
|
|
|
3
3
|
DESC = """
|
|
4
4
|
Home Page: https://github.com/mitnk/tiny-dlna
|
|
5
5
|
|
|
6
|
-
A tiny DLNA receiver.
|
|
6
|
+
A tiny DLNA sender & receiver.
|
|
7
7
|
|
|
8
8
|
Install
|
|
9
9
|
-------
|
|
@@ -21,7 +21,7 @@ Usages
|
|
|
21
21
|
|
|
22
22
|
This will activate a DLNA receiver named "Tiny Render", which can stream videos
|
|
23
23
|
from apps like 虎牙直播, Bilibili, and other video platforms. Additionally, you
|
|
24
|
-
can also use `
|
|
24
|
+
can also use `tiny-cli` to play local videos (like in your RaspberryPi) on it.
|
|
25
25
|
|
|
26
26
|
Note: mpv needs to be installed on your system.
|
|
27
27
|
|
|
@@ -35,13 +35,13 @@ List available DLNA devices.
|
|
|
35
35
|
|
|
36
36
|
$ tiny-cli play ~/Movies/foo/bar.mp4 -q 'TV'
|
|
37
37
|
|
|
38
|
-
Play video on the DLNA device having "TV" in its name.
|
|
38
|
+
Play a video on the DLNA device having "TV" in its name.
|
|
39
39
|
"""
|
|
40
40
|
|
|
41
41
|
setup(
|
|
42
42
|
name='tiny-dlna',
|
|
43
|
-
version='0.7.
|
|
44
|
-
description='a tiny DLNA receiver',
|
|
43
|
+
version='0.7.3',
|
|
44
|
+
description='a tiny DLNA sender & receiver',
|
|
45
45
|
long_description=DESC,
|
|
46
46
|
url='https://github.com/mitnk/tiny-dlna',
|
|
47
47
|
author='mitnk',
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tiny-dlna
|
|
3
|
-
Version: 0.7.
|
|
4
|
-
Summary: a tiny DLNA receiver
|
|
3
|
+
Version: 0.7.3
|
|
4
|
+
Summary: a tiny DLNA sender & receiver
|
|
5
5
|
Home-page: https://github.com/mitnk/tiny-dlna
|
|
6
6
|
Author: mitnk
|
|
7
7
|
License: MIT
|
|
8
8
|
Keywords: dlna
|
|
9
|
+
License-File: LICENSE
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
Home Page: https://github.com/mitnk/tiny-dlna
|
|
12
13
|
|
|
13
|
-
A tiny DLNA receiver.
|
|
14
|
+
A tiny DLNA sender & receiver.
|
|
14
15
|
|
|
15
16
|
Install
|
|
16
17
|
-------
|
|
@@ -28,7 +29,7 @@ Usages
|
|
|
28
29
|
|
|
29
30
|
This will activate a DLNA receiver named "Tiny Render", which can stream videos
|
|
30
31
|
from apps like 虎牙直播, Bilibili, and other video platforms. Additionally, you
|
|
31
|
-
can also use `
|
|
32
|
+
can also use `tiny-cli` to play local videos (like in your RaspberryPi) on it.
|
|
32
33
|
|
|
33
34
|
Note: mpv needs to be installed on your system.
|
|
34
35
|
|
|
@@ -42,4 +43,4 @@ List available DLNA devices.
|
|
|
42
43
|
|
|
43
44
|
$ tiny-cli play ~/Movies/foo/bar.mp4 -q 'TV'
|
|
44
45
|
|
|
45
|
-
Play video on the DLNA device having "TV" in its name.
|
|
46
|
+
Play a video on the DLNA device having "TV" in its name.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|