大家好,我很纠结如何在Twilio中录制,转录和检索转录中的文本。我该怎么做?例如:
# Download the Python helper library from twilio.com/docs/python/install
from twilio.rest import TwilioRestClient
# Your Account Sid and Auth Token from twilio.com/user/account
account_sid = "AC30bd8bdca7572344721eb96c15a5c0c7"
auth_token = "your_auth_token"
client = TwilioRestClient(account_sid, auth_token)
transcription = client.transcriptions.get("TR8c61027b709ffb038236612dc5af8723")
print(transcription.transcription_text)
在client.transcriptions.get中,如何获取最新的转录?我需要Uri(我相信),但不知道如何访问它/变量名。
另一方面,Twilio转录有哪些替代方案,如何在我的脚本中访问相应的录音以进行转录?