admin管理员组

文章数量:1353174

I am building VoIP Dialer using JitsiMeet in android Kotlin using the documentation :

You can check out my project files here:

I’ve divided my question into two parts:

Part 1:-

I have added the code for integrating JitsiMeet in the MainActivity.kt as shown in the documentation. After running the app, it works like the standard JitsiMeet app. However, I’m unsure how to turn this into a VoIP dialer that can make calls to phone numbers. What additional setup is needed? Is it possible to call others by creating a unique connection string based on their caller ID? Would this approach scale for thousands of users?

Part 2:-

I want to implement call recording feature in JitsiMeet. While there is an option already existing for the moderator to be able to start recording the meet, I want the call to automatically start recording as soon as the connection is established. How should I go about implementing this? Should I use MediaRecorder, or can I use the JitsiMeet APIs or modify the JitsiMeet SDK itself for this feature?

I found some resources of low level APIs of JitsiMeet: /

Thanks in advance. I'm a beginner and apologize if my questions are unclear.

本文标签: androidBuilding VoIP dialer using JitsiMeet and implementing call recording featureStack Overflow