Questions tagged «google-voice»

6
有Google Voice API吗?[关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow 的主题。 3年前关闭。 改善这个问题 是否有Google语音的API(正式或非正式)?我想要一个API来处理语音邮件,发送/接收SMS消息,发起呼叫等。 Android客户端正在使用什么?内部有什么?有人记录过吗?
174 google-voice 

7
在Python中删除字符串中的引号
我有一个Python代码,该代码可以使用Google STT引擎识别语音并将结果返回给我,但结果以带引号的字符串形式出现。我不希望在我的代码中加上引号,因为我将使用它来运行许多命令,但它不起作用。到目前为止,我还没有尝试过任何东西!这是python代码中的可识别语音的函数: def recog(): p = subprocess.Popen(['./speech-recog.sh'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) global out,err out, err = p.communicate() print out 这是speech-recog.sh: #!/bin/bash hardware="plughw:1,0" duration="3" lang="en" hw_bool=0 dur_bool=0 lang_bool=0 for var in "$@" do if [ "$var" == "-D" ] ; then hw_bool=1 elif [ "$var" == "-d" ] ; then dur_bool=1 elif [ …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.