wyoming-piper 1.4.0__py3-none-any.whl → 1.6.3__py3-none-any.whl
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.
- wyoming_piper/__init__.py +6 -0
- wyoming_piper/__main__.py +38 -11
- wyoming_piper/download.py +9 -7
- wyoming_piper/handler.py +73 -5
- wyoming_piper/sentence_boundary.py +58 -0
- wyoming_piper/voices.json +1600 -6
- wyoming_piper-1.6.3.dist-info/METADATA +75 -0
- wyoming_piper-1.6.3.dist-info/RECORD +15 -0
- {wyoming_piper-1.4.0.dist-info → wyoming_piper-1.6.3.dist-info}/WHEEL +1 -1
- wyoming_piper-1.6.3.dist-info/entry_points.txt +2 -0
- wyoming_piper-1.4.0.dist-info/METADATA +0 -21
- wyoming_piper-1.4.0.dist-info/RECORD +0 -13
- {wyoming_piper-1.4.0.dist-info → wyoming_piper-1.6.3.dist-info/licenses}/LICENSE.md +0 -0
- {wyoming_piper-1.4.0.dist-info → wyoming_piper-1.6.3.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wyoming-piper
|
|
3
|
+
Version: 1.6.3
|
|
4
|
+
Summary: Wyoming Server for Piper
|
|
5
|
+
Author-email: Michael Hansen <mike@rhasspy.org>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, http://github.com/rhasspy/wyoming-piper
|
|
8
|
+
Keywords: rhasspy,wyoming,piper,tts
|
|
9
|
+
Classifier: Development Status :: 3 - Alpha
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Topic :: Text Processing :: Linguistic
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Requires-Python: >=3.8
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE.md
|
|
21
|
+
Requires-Dist: wyoming<1.8,>=1.7.2
|
|
22
|
+
Requires-Dist: regex==2024.11.6
|
|
23
|
+
Provides-Extra: dev
|
|
24
|
+
Requires-Dist: black==22.12.0; extra == "dev"
|
|
25
|
+
Requires-Dist: flake8==6.0.0; extra == "dev"
|
|
26
|
+
Requires-Dist: isort==5.11.3; extra == "dev"
|
|
27
|
+
Requires-Dist: mypy==0.991; extra == "dev"
|
|
28
|
+
Requires-Dist: pylint==2.15.9; extra == "dev"
|
|
29
|
+
Requires-Dist: pytest==7.4.4; extra == "dev"
|
|
30
|
+
Requires-Dist: pytest-asyncio==0.23.3; extra == "dev"
|
|
31
|
+
Requires-Dist: build==1.2.2.post1; extra == "dev"
|
|
32
|
+
Requires-Dist: scipy<2,>=1.10; extra == "dev"
|
|
33
|
+
Requires-Dist: numpy<2,>=1.20; extra == "dev"
|
|
34
|
+
Requires-Dist: python-speech-features==0.6; extra == "dev"
|
|
35
|
+
Dynamic: license-file
|
|
36
|
+
|
|
37
|
+
# Wyoming Piper
|
|
38
|
+
|
|
39
|
+
[Wyoming protocol](https://github.com/rhasspy/wyoming) server for the [Piper](https://github.com/rhasspy/piper/) text to speech system.
|
|
40
|
+
|
|
41
|
+
## Home Assistant Add-on
|
|
42
|
+
|
|
43
|
+
[](https://my.home-assistant.io/redirect/supervisor_addon/?addon=core_piper)
|
|
44
|
+
|
|
45
|
+
[Source](https://github.com/home-assistant/addons/tree/master/piper)
|
|
46
|
+
|
|
47
|
+
## Local Install
|
|
48
|
+
|
|
49
|
+
Clone the repository and set up Python virtual environment:
|
|
50
|
+
|
|
51
|
+
``` sh
|
|
52
|
+
git clone https://github.com/rhasspy/wyoming-piper.git
|
|
53
|
+
cd wyoming-piper
|
|
54
|
+
script/setup
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Install Piper
|
|
58
|
+
```sh
|
|
59
|
+
curl -L -s "https://github.com/rhasspy/piper/releases/download/v1.2.0/piper_amd64.tar.gz" | tar -zxvf - -C /usr/share
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Run a server that anyone can connect to:
|
|
63
|
+
|
|
64
|
+
``` sh
|
|
65
|
+
script/run --piper '/usr/share/piper/piper' --voice en_US-lessac-medium --uri 'tcp://0.0.0.0:10200' --data-dir /data --download-dir /data
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## Docker Image
|
|
69
|
+
|
|
70
|
+
``` sh
|
|
71
|
+
docker run -it -p 10200:10200 -v /path/to/local/data:/data rhasspy/wyoming-piper \
|
|
72
|
+
--voice en_US-lessac-medium
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
[Source](https://github.com/rhasspy/wyoming-addons/tree/master/piper)
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
wyoming_piper/__init__.py,sha256=z1dsCtGazHHufHQpoVgNtMObt25qYBSOM85o7xgbIJA,139
|
|
2
|
+
wyoming_piper/__main__.py,sha256=SuJ6XY6zy68N8L-N_n_EIWK0vpZwbYQXW5vlSC8BpW8,7445
|
|
3
|
+
wyoming_piper/const.py,sha256=04sCdtJ2QGuF1BQGkOuQW10og61PgH3fCnPhaYu-YoU,1015
|
|
4
|
+
wyoming_piper/download.py,sha256=UpczxHWqLkcOblHmrwgBHSR6wG1LR-hZ4V6QSsrghns,6185
|
|
5
|
+
wyoming_piper/file_hash.py,sha256=HMuwrgEIg-bCOXHG0wE3vtjrqGD7QaA_UNfvBMXeUcY,1107
|
|
6
|
+
wyoming_piper/handler.py,sha256=WVpmnRVYmsd3DrLcMfBOsuo_J1HJ0h00-HwQ1iZEToo,7360
|
|
7
|
+
wyoming_piper/process.py,sha256=L_qqxQcQawrC940fwlv4u6KM9KjCq6N6ym-OADSZcrM,5794
|
|
8
|
+
wyoming_piper/sentence_boundary.py,sha256=pHVo92_weusnVLRVicnS0-Tst_eR-pMrnRrGL96HxC8,1875
|
|
9
|
+
wyoming_piper/voices.json,sha256=elUT3cM0Wlgo8N8E5nhMbMSCPB8zU4SY2XGKwe-T2ys,209108
|
|
10
|
+
wyoming_piper-1.6.3.dist-info/licenses/LICENSE.md,sha256=E3RtUJ105V6iJl--8gS7fNv4SoMVsCB-mIMmy1Q4cCg,1071
|
|
11
|
+
wyoming_piper-1.6.3.dist-info/METADATA,sha256=sNP4bue0pO2mFBb3xUnXfgibofOvaCFuJqN7Hik3fmQ,2543
|
|
12
|
+
wyoming_piper-1.6.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
13
|
+
wyoming_piper-1.6.3.dist-info/entry_points.txt,sha256=n2UgsOCQitQ5Itr20aITTWZLL2dAtaVKn5pdecXdDHE,61
|
|
14
|
+
wyoming_piper-1.6.3.dist-info/top_level.txt,sha256=t7U7-u1sK_4xy_qbTJhxQRbxle3cLQfPq2oVLezHVNU,14
|
|
15
|
+
wyoming_piper-1.6.3.dist-info/RECORD,,
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: wyoming-piper
|
|
3
|
-
Version: 1.4.0
|
|
4
|
-
Summary: Wyoming Server for Piper
|
|
5
|
-
Home-page: https://github.com/rhasspy/wyoming-piper
|
|
6
|
-
Author: Michael Hansen
|
|
7
|
-
Author-email: mike@rhasspy.org
|
|
8
|
-
License: MIT
|
|
9
|
-
Keywords: rhasspy wyoming piper tts
|
|
10
|
-
Classifier: Development Status :: 3 - Alpha
|
|
11
|
-
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: Topic :: Text Processing :: Linguistic
|
|
13
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
-
License-File: LICENSE.md
|
|
20
|
-
Requires-Dist: wyoming ==1.1.0
|
|
21
|
-
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
wyoming_piper/__init__.py,sha256=0P-XSlouNqJwfSqH-RW9GAnILo1ttK7njWIYZHRph2k,32
|
|
2
|
-
wyoming_piper/__main__.py,sha256=UCWe0V0DkSMtzac-I8iMqovGj_7omVJmGqeiFnKR7bk,6808
|
|
3
|
-
wyoming_piper/const.py,sha256=04sCdtJ2QGuF1BQGkOuQW10og61PgH3fCnPhaYu-YoU,1015
|
|
4
|
-
wyoming_piper/download.py,sha256=n3oKXN0fLk7Dn7x4wnR17b3QzXilFgF-QSxtN0QE10s,6185
|
|
5
|
-
wyoming_piper/file_hash.py,sha256=HMuwrgEIg-bCOXHG0wE3vtjrqGD7QaA_UNfvBMXeUcY,1107
|
|
6
|
-
wyoming_piper/handler.py,sha256=qdJ2becIXnE0SLAtoa9ksnSDBbd0D5Nri1oDcruit4c,4603
|
|
7
|
-
wyoming_piper/process.py,sha256=L_qqxQcQawrC940fwlv4u6KM9KjCq6N6ym-OADSZcrM,5794
|
|
8
|
-
wyoming_piper/voices.json,sha256=Qfb75-TO0aI6xINf6-8WOldk34Ic_gam4eDCbZHaePI,159293
|
|
9
|
-
wyoming_piper-1.4.0.dist-info/LICENSE.md,sha256=E3RtUJ105V6iJl--8gS7fNv4SoMVsCB-mIMmy1Q4cCg,1071
|
|
10
|
-
wyoming_piper-1.4.0.dist-info/METADATA,sha256=0GQ_rJMQJ8S9atZSDqnT3JQzb_l_4HMYLhZUnpCWgAw,745
|
|
11
|
-
wyoming_piper-1.4.0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
12
|
-
wyoming_piper-1.4.0.dist-info/top_level.txt,sha256=t7U7-u1sK_4xy_qbTJhxQRbxle3cLQfPq2oVLezHVNU,14
|
|
13
|
-
wyoming_piper-1.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|