forked from funcwj/setk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compute_librosa_spectrogram.sh
executable file
·83 lines (59 loc) · 2.56 KB
/
compute_librosa_spectrogram.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
80
81
82
#!/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
# --center true
# --window hann
stft_conf=conf/stft.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 spectrogram, (default=true)"
echo " --apply-pow <true|false> # use power or magnitude spectrogram, (default=false)"
echo " --stft-conf <stft-conf> # stft configurations files, (default=conf/stft.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> <spectrogram-dir>" && usage && exit 1
src_dir=$(cd $1; pwd)
dst_dir=$3
for x in $src_dir/wav.scp $stft_conf; do [ ! -f $x ] && echo "$0: missing file: $x" && exit 1; done
spectrogram_opts=$(cat $stft_conf | xargs)
spectrogram_opts="$spectrogram_opts --normalize-samples $sample_normalize"
spectrogram_opts="$spectrogram_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
$apply_log && $apply_pow && echo "$0: Using log-amplitude feature instead" && exit 1
name="linear_amp_spectrogram"
$apply_log && ! $apply_pow && name="log_amp_spectrogram"
! $apply_log && $apply_pow && name="linear_pow_spectrogram"
dir=$(basename $src_dir)
if $compress ; then
$cmd JOB=1:$nj $exp_dir/log/compute_spectrogram_$dir.JOB.log \
./scripts/sptk/compute_spectrogram.py \
$spectrogram_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_spectrogram_$dir.JOB.log \
./scripts/sptk/compute_spectrogram.py $spectrogram_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 spectrogram using librosa done"