Update README
Browse files
README.md
CHANGED
|
@@ -19,9 +19,9 @@ To run this program locally, first install Python 3.9+ and Git. Then install Pyt
|
|
| 19 |
pip install -r requirements.txt
|
| 20 |
```
|
| 21 |
|
| 22 |
-
Finally, run the full version (no audio length restrictions) of the app:
|
| 23 |
```
|
| 24 |
-
python app-
|
| 25 |
```
|
| 26 |
|
| 27 |
You can also run the CLI interface, which is similar to Whisper's own CLI but also supports the following additional arguments:
|
|
@@ -32,7 +32,9 @@ python cli.py \
|
|
| 32 |
[--vad_max_merge_size VAD_MAX_MERGE_SIZE] \
|
| 33 |
[--vad_padding VAD_PADDING] \
|
| 34 |
[--vad_prompt_window VAD_PROMPT_WINDOW]
|
|
|
|
| 35 |
[--vad_parallel_devices COMMA_DELIMITED_DEVICES]
|
|
|
|
| 36 |
```
|
| 37 |
In addition, you may also use URL's in addition to file paths as input.
|
| 38 |
```
|
|
|
|
| 19 |
pip install -r requirements.txt
|
| 20 |
```
|
| 21 |
|
| 22 |
+
Finally, run the full version (no audio length restrictions) of the app with parallel CPU/GPU enabled:
|
| 23 |
```
|
| 24 |
+
python app.py --input_audio_max_duration -1 --server_name 127.0.0.1 --auto_parallel True
|
| 25 |
```
|
| 26 |
|
| 27 |
You can also run the CLI interface, which is similar to Whisper's own CLI but also supports the following additional arguments:
|
|
|
|
| 32 |
[--vad_max_merge_size VAD_MAX_MERGE_SIZE] \
|
| 33 |
[--vad_padding VAD_PADDING] \
|
| 34 |
[--vad_prompt_window VAD_PROMPT_WINDOW]
|
| 35 |
+
[--vad_cpu_cores NUMBER_OF_CORES]
|
| 36 |
[--vad_parallel_devices COMMA_DELIMITED_DEVICES]
|
| 37 |
+
[--auto_parallel BOOLEAN]
|
| 38 |
```
|
| 39 |
In addition, you may also use URL's in addition to file paths as input.
|
| 40 |
```
|