Twilio Video allows you to build in-app voice and video integrations with cloud infrastructure and simple APIs.
Questions tagged [twilio-video]
206 questions
1
vote
0 answers
Twilio-Video: No sound / No Audio but Video is working
I'm trying to figure out how to create a Go room with Twilio-Video. The video connections works well, so I guess the token is valid. But there's no audio. In both directions. The relevant JS is below.
I've already looked through various guides and…

NoMorePen
- 43
- 2
- 8
1
vote
0 answers
React Native Exception thrown while executing UI block: *** -[__NSArray0 objectAtIndex:]
I'm building an iOS react-native app, and I'm currently using the react-native-twilio-video-webrtc to build audio/video calling for my app. The app works fine on iPad however when I go to run the app on iPhone, and have audio/video call when the…

Pranesh Kumar
- 21
- 5
1
vote
1 answer
Twilio Video + Text Chat with Angular
I'm working with a doctor consultation application using Twilio Video Chat.
Following things are working in the application:
Node server that returns token
Android application that acts as client
Angular web application for doctors
Audio and video…

Ashutosh
- 4,371
- 10
- 59
- 105
1
vote
1 answer
Switch to default audio input device when it's connected in js
I'm using twilio sdk to implement web calling app. Let's say I'm making a call to someone with my laptop devices (mic and speakers). During the call I plugged-in my headset. In the system both audio input and output devices are changed. The call…

Evgeny Petrushevsky
- 41
- 1
1
vote
1 answer
Twilio Video - Track enable/disable event not firing
For tracks that the localParticipant constructs and publishes manually, enabling/disabling those tracks apparently has no effect on remote participants. So for example, if a localParticipant wanted to mute their audio, the remote participant will…

xz254
- 11
- 1
1
vote
0 answers
On Android, is camera `autofocus` a feature that is required?
Sample projects on https://github.com/twilio/video-quickstart-android shows
but the default value for required is automatically true
This lessens the number of supported devices,…

Trevor
- 23
- 1
- 4
1
vote
1 answer
Twilio - Add attribute to screensharing video
I'm using the following code to just get the media and publish the track:
const stream = await navigator.mediaDevices.getDisplayMedia();
let screenTrack = new Twilio.Video.LocalVideoTrack(stream.getTracks()[0]);
…

JOhnny.C
- 85
- 1
- 8
1
vote
1 answer
twilio video rooms: Can moderator mute particpant in a room from node.js express endpoint
Let's say I have a room with 5 participants. 1 moderator and 4 participants and the moderator needs to mute a particular participant in the room or mute everyone but him/her self. I keep coming across code that seems to indicate a…

user1790300
- 2,143
- 10
- 54
- 123
1
vote
1 answer
How can I combine the separate Video Files in Twilio-Video room into one?
By enabling the RecordVideoParticpants to true,I am able to record the VideoRoom in my Twilio Account but it is getting saved as separate Media files with different Video and Audio entities.
Is there a way to combine and encode it into on single…

Piyush Mahapatra
- 213
- 2
- 13
1
vote
0 answers
Does iOS Twilio allow to access CMSampleBufferRef while Video streaming is going on?
Is it possible to get the frames from the Camera feed while Video streaming is happening through Twilio SDK.
I want to pass the camera feed (Local camera) to ML model while it's being transmitted to live streaming through twilio webRTC GO.
Is it…

Mihir Mehta
- 13,743
- 3
- 64
- 88
1
vote
1 answer
How can I integrate Twilio Video into my asp.net mvc application using plain javascript?
The problem is that, I have already build an mvc application with Twilit Chat. Twilio Chat sample code is in plain javascript. But Twilio Video sample code provided by Twilio is in React (Node js application). How can i get simple javasript to add…
user11338683
1
vote
1 answer
twilio video call JS/.Net MVC
I am implementing twilio video call feature using Javascript & MVC .net. When I execute the project Web browser asks for the camera and Microphone permissions but it does not show camera.
I can't find any related stuff in the…

stacker
- 41
- 1
- 4
1
vote
1 answer
How to check if a track is already published?
for (const localTrack of localTracks) {
if (localTrack.kind === 'video') {
localParticipant.publishTrack(localTrack, {
priority: 'low',
});
} else {
localParticipant.publishTrack(localTrack, {
priority: 'standard',
…

Gajus
- 69,002
- 70
- 275
- 438
1
vote
1 answer
Twilio Programmable Video - Starting a video call without the user having to enter a room ID and name
I'm working with twilio programmable video and I've hit a snag.
My issue with programmable video at the moment is that it requires all users to manually enter a roomID and name. I'd like to send the user a URL with the name and roomID already baked…

user601206
- 123
- 7
1
vote
0 answers
Is there a way to get a list of all in-progress rooms with their participants in one request?
Right now I loop through every in-progress room and send a request to get participants, which really slows down the site. is there any other way?
And also is there a way to filter rooms by number of participants, e.g. get all rooms with one…

mile-panic
- 135
- 2
- 8