├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── conf ├── decode.conf ├── mfcc.conf ├── mfcc_hires.conf ├── mfcc_sid.conf ├── online_cmvn.conf └── vad.conf ├── lib ├── LICENSE └── LIUM_SpkDiarization-4.2.jar ├── local ├── align2ctm.py ├── extract_lid_features_kaldi.py ├── get_ctm_unk.sh ├── json2srt.py ├── json2trs.py ├── lmrescore_lowmem.sh ├── normalize_json.py ├── score.sh ├── segmented_ctm2json.py ├── sid │ ├── apply_dnn.py │ └── train_dnn.py ├── speaker-id-from-server.py ├── unk_p2g.py └── words2numbers.py ├── misc └── docker │ ├── Dockerfile │ ├── Makefile.options │ └── README.md ├── models ├── etc │ └── filler16k.dict ├── gender.gmms ├── s.gmms ├── sms.gmms └── ubm.gmm ├── path.sh ├── scripts ├── compound-ctm.py ├── compounder.py ├── ctm2with-sil-ctm.py ├── diarization.sh ├── find_speech_segments.py ├── hyp2sbv.py ├── make-compounder-symbols.py ├── segmented-ctm-to-hyp.py ├── synced-txt-to-trs.py └── unsegment-ctm.py └── speech2text.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/README.md -------------------------------------------------------------------------------- /conf/decode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/conf/decode.conf -------------------------------------------------------------------------------- /conf/mfcc.conf: -------------------------------------------------------------------------------- 1 | --use-energy=false # only non-default option. 2 | 3 | -------------------------------------------------------------------------------- /conf/mfcc_hires.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/conf/mfcc_hires.conf -------------------------------------------------------------------------------- /conf/mfcc_sid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/conf/mfcc_sid.conf -------------------------------------------------------------------------------- /conf/online_cmvn.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conf/vad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/conf/vad.conf -------------------------------------------------------------------------------- /lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/lib/LICENSE -------------------------------------------------------------------------------- /lib/LIUM_SpkDiarization-4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/lib/LIUM_SpkDiarization-4.2.jar -------------------------------------------------------------------------------- /local/align2ctm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/local/align2ctm.py -------------------------------------------------------------------------------- /local/extract_lid_features_kaldi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/local/extract_lid_features_kaldi.py -------------------------------------------------------------------------------- /local/get_ctm_unk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/local/get_ctm_unk.sh -------------------------------------------------------------------------------- /local/json2srt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/local/json2srt.py -------------------------------------------------------------------------------- /local/json2trs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/local/json2trs.py -------------------------------------------------------------------------------- /local/lmrescore_lowmem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/local/lmrescore_lowmem.sh -------------------------------------------------------------------------------- /local/normalize_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/local/normalize_json.py -------------------------------------------------------------------------------- /local/score.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | echo "Scoring not done here.." 4 | 5 | -------------------------------------------------------------------------------- /local/segmented_ctm2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/local/segmented_ctm2json.py -------------------------------------------------------------------------------- /local/sid/apply_dnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/local/sid/apply_dnn.py -------------------------------------------------------------------------------- /local/sid/train_dnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/local/sid/train_dnn.py -------------------------------------------------------------------------------- /local/speaker-id-from-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/local/speaker-id-from-server.py -------------------------------------------------------------------------------- /local/unk_p2g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/local/unk_p2g.py -------------------------------------------------------------------------------- /local/words2numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/local/words2numbers.py -------------------------------------------------------------------------------- /misc/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/misc/docker/Dockerfile -------------------------------------------------------------------------------- /misc/docker/Makefile.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/misc/docker/Makefile.options -------------------------------------------------------------------------------- /misc/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/misc/docker/README.md -------------------------------------------------------------------------------- /models/etc/filler16k.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/models/etc/filler16k.dict -------------------------------------------------------------------------------- /models/gender.gmms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/models/gender.gmms -------------------------------------------------------------------------------- /models/s.gmms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/models/s.gmms -------------------------------------------------------------------------------- /models/sms.gmms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/models/sms.gmms -------------------------------------------------------------------------------- /models/ubm.gmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/models/ubm.gmm -------------------------------------------------------------------------------- /path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/path.sh -------------------------------------------------------------------------------- /scripts/compound-ctm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/scripts/compound-ctm.py -------------------------------------------------------------------------------- /scripts/compounder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/scripts/compounder.py -------------------------------------------------------------------------------- /scripts/ctm2with-sil-ctm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/scripts/ctm2with-sil-ctm.py -------------------------------------------------------------------------------- /scripts/diarization.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/scripts/diarization.sh -------------------------------------------------------------------------------- /scripts/find_speech_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/scripts/find_speech_segments.py -------------------------------------------------------------------------------- /scripts/hyp2sbv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/scripts/hyp2sbv.py -------------------------------------------------------------------------------- /scripts/make-compounder-symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/scripts/make-compounder-symbols.py -------------------------------------------------------------------------------- /scripts/segmented-ctm-to-hyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/scripts/segmented-ctm-to-hyp.py -------------------------------------------------------------------------------- /scripts/synced-txt-to-trs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/scripts/synced-txt-to-trs.py -------------------------------------------------------------------------------- /scripts/unsegment-ctm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/scripts/unsegment-ctm.py -------------------------------------------------------------------------------- /speech2text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alumae/kaldi-offline-transcriber/HEAD/speech2text.sh --------------------------------------------------------------------------------