向电报机器人发送语音命令
Sending voice command to telegram bot
有什么方法可以向 Telegram 机器人发送语音命令吗?
我想将语音发送到我的机器人并使用 google API 将它们转换为文本,然后翻译并发回。
为此,我需要先获得语音。有没有办法把语音发给机器人?
您可以通过 Voice update, and then obtain download path via the getFile 方法找到 file_id
。
This object represents a file ready to be downloaded.
The file can be downloaded via the link https://api.telegram.org/file/bot<token>/<file_path>
.
以上例子,您可以从https://api.telegram.org/file/bot485609210:mySecret/voice/file_178
下载。
您可以向机器人发送语音消息,该消息将存储在您的服务器上。然后使用 Google API 将其转换为文本,翻译并发回。您要以文本形式发回吗?
有什么方法可以向 Telegram 机器人发送语音命令吗?
我想将语音发送到我的机器人并使用 google API 将它们转换为文本,然后翻译并发回。
为此,我需要先获得语音。有没有办法把语音发给机器人?
您可以通过 Voice update, and then obtain download path via the getFile 方法找到 file_id
。
This object represents a file ready to be downloaded.
The file can be downloaded via the linkhttps://api.telegram.org/file/bot<token>/<file_path>
.
以上例子,您可以从https://api.telegram.org/file/bot485609210:mySecret/voice/file_178
下载。
您可以向机器人发送语音消息,该消息将存储在您的服务器上。然后使用 Google API 将其转换为文本,翻译并发回。您要以文本形式发回吗?