aadnk commited on
Commit
51a543e
1 Parent(s): 84fa1f8

Update CLI documentation in readme

Browse files
Files changed (1) hide show
  1. README.md +4 -3
README.md CHANGED
@@ -24,13 +24,14 @@ Finally, run the full version (no audio length restrictions) of the app:
24
  python app-full.py
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>
28
  ```
29
  python cli.py \
30
- [--vad {none,silero-vad,silero-vad-skip-gaps,periodic-vad}] \
31
  [--vad_merge_window VAD_MERGE_WINDOW] \
32
  [--vad_max_merge_size VAD_MAX_MERGE_SIZE] \
33
- [--vad_padding VAD_PADDING]
 
34
  ```
35
  In addition, you may also use URL's in addition to file paths as input.
36
  ```
 
24
  python app-full.py
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:
28
  ```
29
  python cli.py \
30
+ [--vad {none,silero-vad,silero-vad-skip-gaps,silero-vad-expand-into-gaps,periodic-vad}] \
31
  [--vad_merge_window VAD_MERGE_WINDOW] \
32
  [--vad_max_merge_size VAD_MAX_MERGE_SIZE] \
33
+ [--vad_padding VAD_PADDING] \
34
+ [--vad_prompt_window VAD_PROMPT_WINDOW]
35
  ```
36
  In addition, you may also use URL's in addition to file paths as input.
37
  ```