forked from funcwj/setk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compute_librosa_fbank.sh
executable file
·80 lines (60 loc) · 2.35 KB
/
compute_librosa_fbank.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env bash
# wujian@2018
set -eu
cmd="run.pl"
nj=40
sample_normalize=true
apply_log=true
apply_pow=false
# egs:
# --frame-len 1024
# --frame-hop 256
# --window hann
# --num-bins 40
# --sample-frequency 16000
# --min-freq 0
# --max-freq 8000
# --center true
fbank_conf=conf/fbank_librosa.conf
compress=true
echo "$0 $@"
function usage {
echo "Options:"
echo " --nj <nj> # number of jobs to run parallel, (default=40)"
echo " --cmd <run.pl|queue.pl> # how to run jobs, (default=run.pl)"
echo " --compress <true|false> # compress feature or not, (default=true)"
echo " --apply-log <true|false> # use log or linear fbank, (default=true)"
echo " --apply-pow <true|false> # use power or magnitude spectrogram, (default=false)"
echo " --fbank-conf <fbank-conf> # stft configurations files, (default=conf/fbank_librosa.conf)"
echo " --sample-normalize <true|false> # normalize wav samples into [0, 1] or not, (default=true)"
}
. ./path.sh
. ./utils/parse_options.sh || exit 1
[ $# -ne 3 ] && echo "Script format error: $0 <data-dir> <log-dir> <fbank-dir>" && usage && exit 1
src_dir=$(cd $1; pwd)
dst_dir=$3
for x in $src_dir/wav.scp $fbank_conf; do [ ! -f $x ] && echo "$0: missing file: $x" && exit 1; done
fbank_opts=$(cat $fbank_conf | xargs)
fbank_opts="$fbank_opts --normalize-samples $sample_normalize"
fbank_opts="$fbank_opts --apply-log $apply_log --apply-pow $apply_pow"
exp_dir=$2 && mkdir -p $exp_dir
mkdir -p $dst_dir && dst_dir=$(cd $dst_dir; pwd)
wav_split_scp=""
for n in $(seq $nj); do wav_split_scp="$wav_split_scp $exp_dir/wav.$n.scp"; done
./utils/split_scp.pl $src_dir/wav.scp $wav_split_scp || exit 1
name="fbank"
dir=$(basename $src_dir)
if $compress ; then
$cmd JOB=1:$nj $exp_dir/log/compute_fbank_$dir.JOB.log \
./scripts/sptk/compute_fbank.py \
$fbank_opts $exp_dir/wav.JOB.scp - \| \
copy-feats --compress=$compress ark:- \
ark,scp:$dst_dir/$dir.$name.JOB.ark,$dst_dir/$dir.$name.JOB.scp
else
$cmd JOB=1:$nj $exp_dir/log/compute_fbank_$dir.JOB.log \
./scripts/sptk/compute_fbank.py $fbank_opts \
--scp $dst_dir/$dir.$name.JOB.scp \
$exp_dir/wav.JOB.scp $dst_dir/$dir.$name.JOB.ark
fi
cat $dst_dir/$dir.$name.*.scp | sort -k1 > $src_dir/feats.scp
echo "$0: Compute fbank using librosa done"