通知
本站点除 Legacy 产品与方案外,已迁移至 声网新文档中心 ,当前页面不再维护
Documentation
All
Console 官网 Community Technical support

Cloud recording FAQ

Type: Integration issues    Platform: Linux Java / Linux / Linux C++   Last Updated: 2019/11/18 18:53:17

Why the recorded files are not uploaded to the cloud storage

Uploading the recorded files to the cloud storage fails if:

  • No user is sending a stream in the channel, and the recording times out.
  • Token has expired, or the token authentication has failed.
  • When calling the acquire method to get the recording resource, you set the uid parameter that matches that of a user ID already in the channel. For example, suppose three users are in the channel with user IDs as 123, 234, and 345. If you set uid as 123 when calling the acquire method, the recording fails.
  • The settings of transcodingConfig in the start method do not follow the recommended settings, which causes the recording to fail. See How do I set the video profile of the recorded video? before setting transcodingConfig.
  • Your cloud storage settings are incorrect. Ensure that the following settings are correct:
    • bucket: the name you have given to your cloud storage bucket, previously created in your cloud storage account.
    • accessKey: the access key of your cloud storage account.
    • secretKey: the secret key of your cloud storage account.

How to get the URL of the M3U8 file

The URL of the M3U8 file consists of the domain of your cloud storage and the filename. You can copy the URL in your cloud storage.

You can get the filename of the M3U8 file from the following fileds:

How to stop cloud recording?

You can call the stop method to leave the channel and stop recording.

Agora Cloud Recording automatically stops recording and leaves the channel when there is no user in the recording channel after a time period (30 seconds by default). You can set this timeout interval by the maxIdleTime parameter when you start the recording.

101 error

The "ErrorUint32":101 error in the log file is usually caused by a token error, such as in the following situations:

  • A wrong token.
  • An expired token.
  • The Native/Web SDK uses a token while the cloud recording does not use a token.
  • The cloud recording uses a token while the Native/Web SDK does not use a token.

Abnormal exit

The recording exits abnormally when the app crashes. As long as the call or live broadcast is ongoing, the Agora Cloud Recording service keeps recording and uploading. You can use the original App ID, channel name, and UID to join the channel again and take control of the original recording instance.

Why can't I call the Cloud Recording RESTful API through a web browser?

A Web API needs to make a cross-origin request in accordance with Cross-Origin Resource Sharing (CORS) to call the Cloud Recording RESTful API. The browser must first send an OPTIONS request to the server to query if the server accepts cross-origin requests before sending a cross-origin POST request. However, the Cloud Recording RESTful API does not support the OPTIONS method, and therefore you cannot call it with a Web API.