/usr/bin/pocketsphinx_wsj is in pocketsphinx-lm-wsj 0.5.1+dfsg1-0ubuntu3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/sh
S2CONTINUOUS=/usr/bin/pocketsphinx_continuous
HMM=/usr/share/pocketsphinx/model/hmm/wsj1
LM=/usr/share/pocketsphinx/model/lm/wsj
LMFILE=/usr/share/pocketsphinx/model/lm/wsj/wlist5o.3e-7.vp.tg.lm.DMP
DICT=/usr/share/pocketsphinx/model/lm/wsj/wlist5o.dic
echo " "
echo "pocketsphinx_wsj:"
echo " Demo CMU PocketSphinx decoder with 5000-word connected dictation."
echo " "
echo "<executing $S2CONTINUOUS, please wait>"
$S2CONTINUOUS \
-fwdflat no -bestpath no \
-lm ${LMFILE} \
-dict ${DICT} \
-hmm ${HMM} \
-samprate 8000 \
-nfft 256 $@
|