How can I implement the video recording feature on Agora in a Vuejs project?

596 views Asked by At

I am building a project using Vuejs (frontend) and Django (backend) in which I have integrated Agora-Web-SDK-NG for video calls.

Now, I want to add a feature of video recording and recordings will be stored in the cloud. I have researched a lot but couldn't found that Agora-Web-SDK-NG provides this feature and that too in Vuejs. I have read its official documentation too but couldn't found an understanding way to implement.

Has anyone ever been implemented this feature in Vuejs?

1

There are 1 answers

1
Akshat Gupta On BEST ANSWER

Agora has a separate Cloud Recording SDK which works irrespective of which Video Calling SDK you're using (in this case Agora-Web-SDK-NG). Check out the documentation for the REST API here.

You're just making API requests using Axios so it can be added asynchronously with your video calling application.

This step by step guide will also help you out.