saywoof


Logs | Files | README | README | LICENSE | LICENSE | GitLab


1
commit 74f67041f790e2d67333b526ec34717c393ae80d
2
Author: Connor Etherington <[email protected]>
3
Date:   Tue Aug 1 23:45:24 2023 +0200
4
5
    Auto-Commit Update 01.08.2023 - 23:45:24
6
---
7
 README.md        |  4 ----
8
 bb.html          | 34 ++++++++++++++++++++++++++++++++++
9
 recipe/meta.yaml |  2 +-
10
 3 files changed, 35 insertions(+), 5 deletions(-)
11
12
diff --git a/README.md b/README.md
13
index a3c3ce3..5f87d0a 100644
14
--- a/README.md
15
+++ b/README.md
16
@@ -4,13 +4,9 @@
17
 
18
 *Version: 0.1.0*
19
 
20
-***
21
-
22
 
23
 ## Installation:
24
 
25
-### **Saywoof** can easily be installed from various platforms:
26
-
27
 ### **PyPI**:
28
     pip install saywoof
29
 
30
diff --git a/bb.html b/bb.html
31
new file mode 100644
32
index 0000000..267c752
33
--- /dev/null
34
+++ b/bb.html
35
@@ -0,0 +1,34 @@
36
+<h1>Saywoof - BARK Text-to-Speech Wrapper</h1>
37
+<h3>Welcome to Saywoof, an easy to use wrapper for the BARK text-to-speech engine. The library provides a simple set of functions to quickly get started with Bark TTS.</h3>
38
+<p><em>Version: 0.1.0</em></p>
39
+<h2>Installation:</h2>
40
+<h3><strong>Saywoof</strong> can easily be installed from various platforms:</h3>
41
+<h3><strong>PyPI</strong>:</h3>
42
+<pre><code>pip install saywoof
43
+</code></pre>
44
+<h3><strong>Conda</strong>:</h3>
45
+<pre><code>conda install -c concise saywoof
46
+</code></pre>
47
+<h3><strong>From Source</strong>:</h3>
48
+<h4>If you prefer to install from source, clone this repo, cd into it and run:</h4>
49
+<pre><code>pip install -e .
50
+
51
+# or python3 ./setup.py install
52
+</code></pre>
53
+<h1>Usage</h1>
54
+<h2>Options:</h2>
55
+<ul>
56
+<li>-h, --help: Show help message and exit.</li>
57
+<li>-l, --local: Load local model.</li>
58
+<li>-L, --large: Load large model.</li>
59
+<li>-s, --save: Save model.</li>
60
+<li>-t, --text: Text to convert to speech.</li>
61
+<li>-f, --file: File to convert to speech.</li>
62
+<li>-o, --output: Output file name.</li>
63
+<li>-r, --rate: Sample rate of output file.</li>
64
+<li>-p, --persistent: Persistent mode.</li>
65
+</ul>
66
+<h2>License</h2>
67
+<p>Saywoof is open source and licenced under the MIT/X Consortium license</p>
68
+<h2>Support</h2>
69
+<p>If you encounter any problems or have suggestions for Saywoof, please open an issue on GitLab. We value your feedback and will respond as quickly as possible.</p>
70
diff --git a/recipe/meta.yaml b/recipe/meta.yaml
71
index 7e56c72..e2f668d 100644
72
--- a/recipe/meta.yaml
73
+++ b/recipe/meta.yaml
74
@@ -15,7 +15,7 @@ requirements:
75
     - pip
76
   run:
77
     - python
78
-    - "numpy<=1.24"
79
+    - numpy
80
     - pandas
81
 
82
 about: