File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed
Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,21 @@ Stay tuned for a technical report comparing WhisperS2T against other whisper pip
2727
2828### Installation
2929
30+ Install audio packages required for resampling and loading audio files.
31+
3032``` sh
31- # Install audio utils
3233apt-get install -y libsndfile1 ffmpeg
34+ ```
35+
36+ To install or update to the latest released version of WhisperS2T use the following command:
3337
34- # Install WhisperS2T
38+ ``` sh
39+ pip install -U whisper-s2t
40+ ```
41+
42+ Or to install from latest commit in this repo:
43+
44+ ``` sh
3545pip install -U git+https://github.com/shashikg/WhisperS2T.git
3646```
3747
@@ -65,6 +75,8 @@ print(out[0][0])
6575"""
6676```
6777
78+ Check this [ Documentation] ( doc.md ) for more details.
79+
6880
6981## License
7082
You can’t perform that action at this time.
0 commit comments