From a37cfbfb96a3cf78a87d3b0899bebdcb12d9e05a Mon Sep 17 00:00:00 2001 From: Hui Zhang Date: Tue, 26 Oct 2021 03:07:59 +0000 Subject: [PATCH] add fbank/pitch conf --- examples/librispeech/s2/conf/fbank.conf | 2 ++ examples/librispeech/s2/conf/pitch.conf | 1 + tools/Makefile | 3 ++- 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 examples/librispeech/s2/conf/fbank.conf create mode 100644 examples/librispeech/s2/conf/pitch.conf diff --git a/examples/librispeech/s2/conf/fbank.conf b/examples/librispeech/s2/conf/fbank.conf new file mode 100644 index 00000000..82ac7bd0 --- /dev/null +++ b/examples/librispeech/s2/conf/fbank.conf @@ -0,0 +1,2 @@ +--sample-frequency=16000 +--num-mel-bins=80 diff --git a/examples/librispeech/s2/conf/pitch.conf b/examples/librispeech/s2/conf/pitch.conf new file mode 100644 index 00000000..e959a19d --- /dev/null +++ b/examples/librispeech/s2/conf/pitch.conf @@ -0,0 +1 @@ +--sample-frequency=16000 diff --git a/tools/Makefile b/tools/Makefile index 36ac7d54..4d60fd7f 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -25,6 +25,7 @@ clean: apt.done: apt update -y apt install -y flac jq vim tig tree pkg-config libflac-dev libogg-dev libvorbis-dev libboost-dev swig python3-dev + echo "check_certificate = off" >> ~/.wgetrc touch apt.done kenlm.done: @@ -55,7 +56,7 @@ mfa.done: touch mfa.done kaldi.done: - test -d kaldi || git clone --depth 1 https://github.com/kaldi-asr/kaldi + bash extras/install_kaldi.sh touch kaldi.done #== SCTK =============================================================================== -- GitLab