You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
244 B
19 lines
244 B
3 years ago
|
#!/bin/bash
|
||
|
set +x
|
||
|
set -e
|
||
|
|
||
|
. path.sh
|
||
|
# input
|
||
|
data=$PWD/data
|
||
|
|
||
|
# output
|
||
|
wav_scp=wav.scp
|
||
|
|
||
|
export GLOG_logtostderr=1
|
||
|
|
||
|
# websocket client
|
||
|
websocket_client_main \
|
||
|
--wav_rspecifier=scp:$data/$wav_scp \
|
||
|
--streaming_chunk=0.36 \
|
||
|
--port=8881
|