用Qpython录制声音

时间:2017-03-22 17:16:18

标签: python audio microphone qpython

我正在使用QPython,我想知道是否有办法录制手机麦克风的声音。我无法在Qpython中安装speech_recognition或PyAudio,我也找不到任何教程。任何帮助是值得赞赏的人:D

1 个答案:

答案 0 :(得分:0)

这是一个老问题,但我也可以回答搜索信息的其他人。

要使用qpython访问手机的功能,您必须先导入androidhelper()并创建一个代表您手机的对象。

完成此操作后,您可以访问多个功能,例如您要查找的功能(recorderStartMicrophone和recorderStop)。

有一个简单的脚本显示如何使用它:

import androidhelper
droid = androidhelper.Android()

droid.recorderStartMicrophone("Path/To/Where/You/Want/To/Save/The/Audio")
#Do what you want. It might be a timer or another function.
droid.recorderStop()

androidhelper中包含完整的功能列表: http://kylelk.github.io/html-examples/androidhelper.html