1 Star 0 Fork 129

tmp0230/西安工程大学智能音箱实训

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
training_service.sh 871 Bytes
一键复制 编辑 原始数据 按行查看 历史
刘煜 提交于 2020-07-09 15:58 . 增加唤醒词训练脚本
#! /usr/bin/env bash
ENDPOINT="https://snowboy.kitt.ai/api/v1/train/"
############# MODIFY THE FOLLOWING #############
TOKEN="Your API token"
NAME="Full name"
LANGUAGE="zh"
AGE_GROUP="20_29"
GENDER="M"
MICROPHONE="USB"
############### END OF MODIFY ##################
#arecord -r 16000 -c 1 -f S16_LE 1.wav
if [[ "$#" != 4 ]]; then
printf "Usage: %s wave_file1 wave_file2 wave_file3 out_model_name" $0
exit
fi
WAV1=`base64 $1`
WAV2=`base64 $2`
WAV3=`base64 $3`
OUTFILE="$4"
cat <<EOF >data.json
{
"name": "$NAME",
"language": "$LANGUAGE",
"age_group": "$AGE_GROUP",
"token": "$TOKEN",
"gender": "$GENDER",
"microphone": "$MICROPHONE",
"voice_samples": [
{"wave": "$WAV1"},
{"wave": "$WAV2"},
{"wave": "$WAV3"}
]
}
EOF
curl -H "Content-Type: application/json" -X POST -d @data.json $ENDPOINT > $OUTFILE
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/tmp0230-1/XPU-SmartSpeaker-Lab2020.6.git
git@gitee.com:tmp0230-1/XPU-SmartSpeaker-Lab2020.6.git
tmp0230-1
XPU-SmartSpeaker-Lab2020.6
西安工程大学智能音箱实训
master

搜索帮助