Installation

DanSpeech is installed by

$ pip install danspeech

If you wish to install from source, then do

$ git clone https://github.com/danspeech/danspeech
$ cd danspeech
$ pip install .

DanSpeech requires python 3.5+.

CTC-decode

To use language models with the system, you will need to additionally install ctc-decode.

$ git clone --recursive https://github.com/parlance/ctcdecode.git
$ cd ctcdecode && pip install .

Warning: This might prove rather troublesome to install on a windows system.

PyAudio

If you wish to transcribe a stream of audio e.g. from a microphone, you will need to additionally install PyAudio.