Twilio 录制视频

Twilio Recording Video

我正在开发一个使用 VideoCall 和录音的系统。我想在我的网页上显示录音,我得到了 url 这样的录音 https://video.twilio.com/v1/Recordings/RTXXXXXXXXXXXXXXXXXX

但是当我加载它的时候。它显示一个表格来填写 username/password

我可以在没有 username/passwd 的情况下获取我网页的录音内容吗(例如通过 API 或其他方式)?

我有 account_sid、auth_token、api_key 信息,..etc

请帮帮我! 感谢您的帮助!

此处为 Twilio 开发人员布道师。

你的 URL 是 recording's resource in the API. You can get a URL for the media itself by making a request to the recording's media subresource. The media endpoint takes some arguments and returns a temporary redirect to the recording file. Check the documentation on fetching a recording's media for more information

不过请注意,录音并未针对在浏览器中播放进行优化。录制文件以 Matroska 文件格式(.mka.mkv)返回。 Chrome 可能会播放这些内容,但其他浏览器可能不会。播放这些录音的最佳应用程序是 VLC Player。

如果您希望生成玩家友好的文件,请查看 Twilio Video Compositions API