Questions tagged [twilio-video]

Twilio Video allows you to build in-app voice and video integrations with cloud infrastructure and simple APIs.

206 questions
2
votes
1 answer

Is there a way to subscribe to a room's `participantConnected` event without becoming a participant?

One can use the room returned from calling Video.connect to subscribe to a room's participantConnected event, so that all kinds of different logic can be executed when a new participant joins a room. I can also query rooms remotely without…
Mark Rogers
  • 96,497
  • 18
  • 85
  • 138
2
votes
1 answer

How to programmatically request media permissions?

Camera and microphone are manually blocked in Chrome (as shown in a picture below): Local media tracks are created using twilio-video library methods createLocalAudioTrack and createLocalVideoTrack which throws the next exception: DOMException:…
olegzhermal
  • 799
  • 10
  • 26
2
votes
1 answer

How to specify statusCallbackEvent in Twillio Programmable Video statusCallback while creating a room?

Is there any way to specify the statusCallbackEvent while creating a room using Room API? Like in TwiML we can specify the statusCallbackEvent docs here. Here is the code snippet for room creatiion: // Create Room using twilio API …
2
votes
0 answers

react twilio video: first joiner screen black on participant join

i have made a twillio video app.i can show local video on Laptop website but when i join from another chrome tab or mobile phone chrome browser the video on laptop goes black and only one video is showing whereas both videos should show properly.i…
Prince Hamza
  • 1,090
  • 12
  • 21
2
votes
0 answers

Echo issue (Safari and Twilio Video API)

I'm using the Twilio Programmable Video API and have run into audio echoing issues in a few circumstances. My particular implementation is pretty complicated, but I can actually duplicate this problem 100% of the time using the js video quickstart…
Joe Longstreet
  • 372
  • 1
  • 5
  • 21
2
votes
1 answer

How to get all in-progress rooms with their participants in one HTTP request?

For performance reasons, I need to get all rooms together with their participants in only one HTTP request. Is that supported by Twilio REST API Client?
mile-panic
  • 135
  • 2
  • 8
2
votes
0 answers

Twilio track disable not working as expected

I want to mute my self in a twilio video app. But the problem is that when I use the method mentioned in the documentation room.localParticipant.videoTracks.forEach((publication) => { publication.track.disable(); …
Omair Shamshir
  • 2,126
  • 13
  • 23
2
votes
1 answer

Twilio video calls: Permission denied in chrome only

I am trying to implement video calls using Twilio. Backend successfully generates token and I am using it to establish a video call. Upon requesting permission to access the mic and camera from the browser I get the following error in chrome: Error…
lopushen
  • 1,117
  • 2
  • 11
  • 32
2
votes
0 answers

How can i create/retrive more detailed participant info in twilio video?

I want to show multiple user details as an overlay on the participant's video. Is there any way we can store more detailed participant data for the Twilio video? I've used Twilio chat and we can store some app-related data in attributes. As shown…
Ravi Rajpurohit
  • 502
  • 6
  • 15
2
votes
0 answers

Twilio Paginate Video Tracks

We are currently using Twilio Video to enable users to make group video calls, where the calls adopt a grid-style view) I've been looking for a way to paginate through pages of video tracks. The idea here is we only show the first 12 video tracks,…
Francesco Virga
  • 196
  • 1
  • 10
2
votes
0 answers

Twilio video rooms + chrome headless

Probably this question doesn't have much sense but i feel a bit curious if this can be done or it's a very crazy idea only. I'm thinking a way of sharing data-tracks in a twilio video-room without the need of any of the participants sharing their…
Acampoh
  • 589
  • 1
  • 8
  • 23
2
votes
0 answers

Twilio Programmable video screen share not working

I am capturing the user's screen and publishing that track to the room's localparticipant object but the feed continues to display the user's camera. If I log the room object to the console it does not display multiple tracks. Is it necessary that I…
Digglit
  • 576
  • 1
  • 4
  • 11
2
votes
1 answer

How to detect when autoplay is blocked?

Currently WebRTC fails on Brave browser with "Autoplay was blocked on this page" error. This error is not particularly visible: You can test it with Brave browser where any WebRTC is enabled, e.g. https://test.webrtc.org/. My app users are…
Gajus
  • 69,002
  • 70
  • 275
  • 438
2
votes
1 answer

Twilio completed room - can it be rejoined/recreated?

I'm using the REST API to create rooms. In the docs, it says a room will end when empty for 5 minutes. I would like to know what this means when trying to reuse the same room. Can participants rejoin that room again? My use case is that users make…
skwny
  • 2,930
  • 4
  • 25
  • 45
2
votes
1 answer

Can Twilio Programmable Video be used without node.js?

I'm testing Twilio video on javascript to start a video call to either another javascript client or a mobile client. The javascript client is running in chrome with a server written in Java. There's no node.js runtime. I'm following the twilio video…
Hilikus
  • 9,954
  • 14
  • 65
  • 118
1
2
3
13 14