diff --git a/examples/vad_transcriber/wavTranscription.md b/examples/vad_transcriber/wavTranscription.md index aff0c4cc..de6accd1 100644 --- a/examples/vad_transcriber/wavTranscription.md +++ b/examples/vad_transcriber/wavTranscription.md @@ -21,16 +21,10 @@ Ubuntu/Debian A list of distributions where the package is available can be found at: https://pkgs.org/download/sox #### 0.1 Download Deepspeech - -Download a stable(!) release from the release page and extract it to a folder of your choice. - -This is because you need to use the same deepspeech model version and deepspeech version for things to work. - -You only need the example folder, but you can't download it seperately, so you have to download the whole sourcecode. +Either clone from git via git clone, or Download a version from the release page For the next steps we assume you have extracted the files to ~/Deepspeech -**Note: Currently there is a bug in requierement.txt of the example folders which installs deepspech 4.1 when downloading the source code for 5.1, to fix this simply run pip3 install deepspeech==0.5.1 after installing** #### 0.2 Setup your environment @@ -47,7 +41,7 @@ Ubuntu/Debian: Fedora ``` -~/Deepspeech$ sudo dnf install python-virtualen +~/Deepspeech$ sudo dnf install python-virtualenv ~/Deepspeech$ cd examples/vad_transcriber ~/Deepspeech/examples/vad_transcriber$ virtualenv -p python3 venv ~/Deepspeech/examples/vad_transcriber$ source venv/bin/activate @@ -104,11 +98,10 @@ In such a scenario, the GUI tool will not work. The following steps is known to (venv) ~/Deepspeech/examples/vad_transcriber$ python3 audioTranscript_gui.py ``` -#### 2.2 Known Bugs -##### Could not load modal with error code X -Often this is because you try to load a older or newer model than the deepspeech version you are using. -Be sure to load only the models that where released with the same deepspeech version you are using. - -This is the reason we advice you to use the examples from a released stable version. +#### 2.2 Useful Tips ##### The GUI programm immediately crashes when you press start recording This happens when you don't load the models via the "Browse Models" button, before pressing the "Start recording" button. + +##### What does error XYZ mean? +You can find a list of error codes and what they mean at https://deepspeech.readthedocs.io/en/latest/Error-Codes.html +