如何让聊天机器人从 google 会议中捕获音频?
How to maket chatbot to capture audio from a google meet?
我是开发聊天机器人的新手。我想弄清楚 google 会议中的聊天机器人是否有办法捕获整个会议的音频(或音频的转录本)。
到目前为止,我能找到的唯一似乎在某种程度上处理音频的是 dialogflow,但它似乎仍然没有提供我正在寻找的东西:
- https://cloud.google.com/dialogflow/docs/how/detect-intent-tts
- https://cloud.google.com/blog/products/g-suite/keep-the-dialog-flowing-create-conversational-chatbots-in-hangouts-chat-with-dialogflow
您不能通过环聊 API 执行此操作。 Hangouts 聊天机器人唯一可用的请求是 Hangouts Chat API:
文档中提到的请求
spaces.get Returns a space.
spaces.list Lists spaces the bot belongs to.
spaces.members.get Returns a member.
spaces.members.list Lists humans (not bots) that belong to the space.
spaces.messages.create Creates a message.
spaces.messages.delete Deletes a message.
spaces.messages.get Returns a message.
spaces.messages.update Updates a message.
我是开发聊天机器人的新手。我想弄清楚 google 会议中的聊天机器人是否有办法捕获整个会议的音频(或音频的转录本)。
到目前为止,我能找到的唯一似乎在某种程度上处理音频的是 dialogflow,但它似乎仍然没有提供我正在寻找的东西: - https://cloud.google.com/dialogflow/docs/how/detect-intent-tts - https://cloud.google.com/blog/products/g-suite/keep-the-dialog-flowing-create-conversational-chatbots-in-hangouts-chat-with-dialogflow
您不能通过环聊 API 执行此操作。 Hangouts 聊天机器人唯一可用的请求是 Hangouts Chat API:
文档中提到的请求spaces.get Returns a space.
spaces.list Lists spaces the bot belongs to.
spaces.members.get Returns a member.
spaces.members.list Lists humans (not bots) that belong to the space.
spaces.messages.create Creates a message.
spaces.messages.delete Deletes a message.
spaces.messages.get Returns a message.
spaces.messages.update Updates a message.