使用tasker/sl4a/python通过语音发送文本
我在说话时使用 tasker
发送短信。但是,我的 .py
文件似乎并没有像我想象的那样将我的语音保存到剪贴板。您可以看到,我首先将剪贴板保存为变量,以便稍后重置它,以防它很重要。
这是我到目前为止所拥有的...
- 变量集(名称:%SAVECLIP到:%CLIP)如果(设置%CLIP)
- 设置剪贴板(文本:不重要。)
- 运行脚本(名称:SpeechToClip.py)
- 等待( MS: 秒:2 分钟:0 小时:0 天:0)
- 发送短信 (号码: 一个号码 文本:%CLIP)
- 设置剪贴板 (文本:%SAVECLIP 添加:关闭) If (%SAVECLIP Is设置)
- 变量清除(名称:%SAVECLIP)
我的 .py
文件是在记事本中创建的,然后复制到我的 sl4a/scripts
文件夹中。这是我的 .py 文件包含的内容...
import android
droid = android.Android()
droid.setClipboard(droid.recognizeSpeech()[1])
我认为这个 .py
文件是发生错误的地方,因为我的剪贴板仍然“不重要”。并且收到的短信也写着“不重要”。而不是我所说的。
任何帮助/建议将不胜感激。
I am using tasker
to send send a text when I speak. However, my .py
file does not seem to be saving my speech to the clipboard as I though it would. You can see that I am first saving the clipboard as a variable to reset it later in case it is something important.
Here is what I have so far...
- Variable Set (Name:%SAVECLIP To:%CLIP) If (%CLIP Is Set)
- Set Clipboard (Text:Not important.)
- Run Script (Name:SpeechToClip.py)
- Wait Until (MS: Seconds:2 Minutes:0 Hours:0 Days:0)
- Send SMS (Number: a number Text:%CLIP)
- Set Clipboard (Text:%SAVECLIP Add:Off) If (%SAVECLIP Is Set)
- Variable Clear (Name:%SAVECLIP)
My .py
file was created in Notepad and then copied into my sl4a/scripts
folder. Here is what my .py file contains...
import android
droid = android.Android()
droid.setClipboard(droid.recognizeSpeech()[1])
I think this .py
file is where the error is occurring because my clipboard is still "Not important." and the text message that is received also says "Not important." instead of what I speak.
Any help/advice would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了我自己的解决方案,度过了一天的混乱。这个
.py
代码似乎工作得更好......Found my own solution of a day of messing around. This
.py
code seemed to work better...