Update README and update to version 2.1
Browse files
README.md
CHANGED
|
@@ -47,7 +47,7 @@ pip install -r requirements.txt
|
|
| 47 |
|
| 48 |
This script allows you to speak a single phrase with one or more voices.
|
| 49 |
```shell
|
| 50 |
-
python do_tts.py --text "I'm going to speak this" --voice random --preset fast
|
| 51 |
```
|
| 52 |
|
| 53 |
### read.py
|
|
@@ -55,7 +55,7 @@ python do_tts.py --text "I'm going to speak this" --voice random --preset fast
|
|
| 55 |
This script provides tools for reading large amounts of text.
|
| 56 |
|
| 57 |
```shell
|
| 58 |
-
python read.py --textfile <your text to be read> --voice random
|
| 59 |
```
|
| 60 |
|
| 61 |
This will break up the textfile into sentences, and then convert them to speech one at a time. It will output a series
|
|
@@ -170,7 +170,7 @@ came from Tortoise.
|
|
| 170 |
This classifier can be run on any computer, usage is as follows:
|
| 171 |
|
| 172 |
```commandline
|
| 173 |
-
python is_this_from_tortoise.py --clip=<path_to_suspicious_audio_file>
|
| 174 |
```
|
| 175 |
|
| 176 |
This model has 100% accuracy on the contents of the results/ and voices/ folders in this repo. Still, treat this classifier
|
|
|
|
| 47 |
|
| 48 |
This script allows you to speak a single phrase with one or more voices.
|
| 49 |
```shell
|
| 50 |
+
python tortoise/do_tts.py --text "I'm going to speak this" --voice random --preset fast
|
| 51 |
```
|
| 52 |
|
| 53 |
### read.py
|
|
|
|
| 55 |
This script provides tools for reading large amounts of text.
|
| 56 |
|
| 57 |
```shell
|
| 58 |
+
python tortoise/read.py --textfile <your text to be read> --voice random
|
| 59 |
```
|
| 60 |
|
| 61 |
This will break up the textfile into sentences, and then convert them to speech one at a time. It will output a series
|
|
|
|
| 170 |
This classifier can be run on any computer, usage is as follows:
|
| 171 |
|
| 172 |
```commandline
|
| 173 |
+
python tortoise/is_this_from_tortoise.py --clip=<path_to_suspicious_audio_file>
|
| 174 |
```
|
| 175 |
|
| 176 |
This model has 100% accuracy on the contents of the results/ and voices/ folders in this repo. Still, treat this classifier
|