-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathspeech2text.aspire.sh
executable file
·80 lines (59 loc) · 2.61 KB
/
speech2text.aspire.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
#!/bin/bash
BASEDIR=$(dirname $0)
echo "$0 $@" # Print the command line for logging
txt=""
trs=""
ctm=""
sbv=""
srt=""
clean=false
nthreads=""
. $BASEDIR/utils/parse_options.sh || exit 1;
. $BASEDIR/path.sh
if [ $# -ne 1 ]; then
echo "Usage: speech2text [options] <audiofile>"
echo "Options:"
echo " --nthreads <n> # Use <n> threads in parallel for decoding"
echo " --txt <txt-file> # Put the result in a simple text file"
echo " --trs <trs-file> # Put the result in trs file (XML file for Transcriber)"
echo " --ctm <ctm-file> # Put the result in CTM file (one line pwer word with timing information)"
echo " --sbv <sbv-file> # Put the result in SBV file (subtitles for e.g. YouTube)"
echo " --srt <srt-file> # Put the result in SRT file (subtitles)"
echo " --labels <lbl-file> # Put the result in Audacity labels format"
echo " --clean (true|false) # Delete intermediate files generated during decoding (true by default)"
exit 1;
fi
DIRNAME=$(dirname $1)
nthreads_arg=""
if [ ! -z $nthreads ]; then
nthreads_arg="nthreads=$nthreads"
fi
makefile="Makefile.aspire"
filename=$(basename "$1")
basename="${filename%.*}"
[ -f $BASEDIR/src-audio/$filename ] || [ -L $BASEDIR/src-audio/$filename ] || (e=`readlink -f $1` && cd $BASEDIR/src-audio && ln -s $e .)
(cd $BASEDIR; make -f ${makefile} $nthreads_arg build/output/${basename%.*}.{txt,trs,ctm,sbv,srt,labels} || exit 1; if $clean ; then make -f ${makefile} .${basename%.*}.clean; fi)
#(cd $BASEDIR; make -f ${makefile} $nthreads_arg $nnet2_online_arg build/diarization/${basename%.*}/show.seg || exit 1; if $clean ; then make -f ${makefile} .${basename%.*}.clean; fi)
# put phonetic transcription in output folder (not part of Makefile)
#python local/readphonemes.py build/trans/${basename}/eesen/decode/phones.1.txt > build/output/${basename}.phones
echo "Finished transcribing, result is in files $BASEDIR/build/output/${basename%.*}.{txt,trs,ctm,sbv,srt,labels}"
if $clean; then rm $BASEDIR/src-audio/$filename; fi
if [ ! -z $txt ]; then
cp $BASEDIR/build/output/${basename%.*}.txt $txt
echo $txt
fi
if [ ! -z $trs ]; then
cp $BASEDIR/build/output/${basename%.*}.trs $trs
fi
if [ ! -z $ctm ]; then
cp $BASEDIR/build/output/${basename%.*}.ctm $ctm
fi
if [ ! -z $sbv ]; then
cp $BASEDIR/build/output/${basename%.*}.sbv $sbv
fi
if [ ! -z $srt ]; then
cp $BASEDIR/build/output/${basename%.*}.srt $srt
fi
if [ ! -z $labels ]; then
cp $BASEDIR/build/output/${basename%.*}.labels $labels
fi