Twilio Video allows you to build in-app voice and video integrations with cloud infrastructure and simple APIs.
Questions tagged [twilio-video]
206 questions
0
votes
0 answers
show how you are trying to show the participants' videos?
Unable to join the room in Twilio Video call and below code am using for create room .
private registerRoomEvents() {
this.activeRoom
.on('disconnected',
(room: Room) =>…

ramu yepuganti
- 1
- 3
0
votes
1 answer
Twilio record meeting
How to get a correct video room record from Twilio. I'm using C# SDK
Creating room:
var room = await RoomResource.CreateAsync(null, RoomResource.RoomTypeEnum.GroupSmall, name, recordParticipantsOnConnect: true);
Then I have room sid in database. And…

Peter Pollen
- 83
- 1
- 6
0
votes
1 answer
Use live media stream as participant voice instead of getUserMedia: Twilio Video
I want to add a hidden participant in a group video call to play song stream as participant's voice(without video), with some control like whenever we want to stop or start, we can. I'm trying to pass media stream from a URL as tracks while making a…
0
votes
2 answers
Error: There was a problem getting the Conversation associated with this room
I'm trying to implement this project: https://github.com/twilio/twilio-video-app-react
I got error "There was a problem getting the Conversation associated with this room." when the ChatProvider did mount. Seem like chatClient can't find the…

dungreact
- 442
- 1
- 9
- 22
0
votes
0 answers
Twilio video track attach not showing video of remote participant
Remote video not attaching using trackSubscribed and publication.isSubscribed returning false when i reload the browser and when i attach track using browser console the video is shown as expected. Twilio-video version 2.13.1

Mohsin Ijaz
- 1
- 1
0
votes
1 answer
Twillio Video and JavaScript: Changing Webcam
I am trying to implement a webchat with Twilio Programmable Video and its Javascript SDK.
So far I have managed to create a Room (in the backend) and connect the current user to the room.
The video is streamed from the local webcam (on a PC) to a…

Aref Karimi
- 1,822
- 4
- 27
- 46
0
votes
0 answers
switchOff/ switchOn twilio not working as expected
I wanted to detect switch off and switch on event on Twilio network bandwidth API. I am following this article (https://www.twilio.com/docs/video/tutorials/using-bandwidth-profile-api).
This is my configuration for api.
bandwidthProfile: {
…

Arsalan Subhan
- 33
- 6
0
votes
1 answer
How to get video call log details from twilio Video in Node.js, on server side?
I want to get video call log details from twilio using node.js on the server side.
I need details:
what time call started/ended,
duration of a call,
A time duration for which each participant connected in a call.
what time each participant…

ambarish dashora
- 3
- 3
0
votes
1 answer
Twilio - Wait for all participants before entering a room and starting recording (small group rooms)
I'm using small groups (max of 4 participants) and I have enabled recordings on it.
My use case it that the participants enters a lobby with video preview only (not recorded yet) and then he actually enters in the room (recording starts) and he can…

Dana
- 85
- 1
- 10
0
votes
1 answer
"TypeError: track.attach is not a function" in React-Twilio Video Application
My Twilio React-Video Application works fine for both Local and Remote Participants over Web(and Mobile Browser)
When I try to connect to the same "Room" and all the necessary details from Twilio Android-SDK-Flutter plugin,I get this…

Piyush Mahapatra
- 213
- 2
- 13
0
votes
1 answer
Can I create more than one Twilio Composition Setting for 2 different projects?
I have 2 projects where I am saving videos in Twilio. One project, I do not want to change. The second project, I want to move the storage to S3. I have 2 buckets in S3, bucket1 and bucket2, and I would like to store the videos from some of my…

mickey
- 476
- 5
- 18
0
votes
1 answer
Twilio Video start recording manually
I'm working on a video call web application using Twilio Video REST API and JavaScript SDK 2.8.0.
My requirement is that Users should be able to record video calls only if they want to record, and there is no need to record all calls…

Tharanga Rukshan
- 11
- 2
0
votes
1 answer
Is there any order for Twilio video Rooms Status Callback Events, while listening via webhooks?
Context:
We are using Twilio programmable video for our app on iOS, Android, WebBrowser. There is a Java web server that uses a webhook to listen to all the events.
We started implementing Android app recently. For android clients, we noticed…

Mesbah
- 171
- 7
0
votes
1 answer
Twilio Room-events status callback handler
I have deployed the java service (Spring-boot) under the docker container and have been using embedded tomcat with SSL configurations specified in application.properties file.(I am using cert.pem file generated by let's encrypt authority.)
Before…

Darshan Shah
- 1
- 1
0
votes
2 answers
Inserting HTML into a Snackbar message
So I'm forking off a sample Twilio video chat app (https://github.com/twilio/twilio-video-app-react). For the chat feature, Snackbar messages are employed. Which works fine. But I want to allow the user to send a message starting with http, so that…

gregarican
- 105
- 1
- 11