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
1 answer
Issue connecting to token server with Firebase hosting
I am trying to deploy the Twilio video app to Firebase hosting. Everything works great, except when I try to connect to video conference it tells me the Twilio tokens are invalid.
I found that I need to set up google cloud functions to resolve…

Will Cousin
- 131
- 6
0
votes
1 answer
Twillio - Display video/audio track of already joined member to new member
How to display the video/audio of already joined members to newly joined member of the room. Following is my code but when i am trying to access the track property it is returning null.
room.participants.forEach(participant => {
…

harish durga
- 494
- 4
- 12
0
votes
1 answer
Twilio-video on Ruby-on-Rails app: How to convert token string to be a `Twilio::JWT::AccessToken` object?
In my app, I added in User model a field twilio_video_token as a string.
When comes the time to create a token associated to a specific user, I do that:
token = Twilio::JWT::AccessToken.new ENV["TWILIO_ACCOUNT_SID"], ENV["TWILIO_API_KEY"],…

Sylvain FARNAULT
- 82
- 5
0
votes
0 answers
Nodejs client for twilio video
I would like to make a nodejs client join a twilio video chat room. When I try to use the twilio client API (the one that is supposed to be used within a browser) it fails because it tried to call getUserMedia but obviously that is not available…

user1174995
- 153
- 4
- 9
0
votes
3 answers
Twilio Remote video from Safari iPhone showing black-screen in Angular 5
iPhone safari version: 11.2.5
Chrome version: Checking for updates Version 80.0.3987.163 (Official Build) (64-bit)
The connection is a peer to peer.
If I can give you an overview it's like -
Video is coming on iPhone from mac safari, Chrome, window…

Ashish Garg
- 60
- 6
0
votes
1 answer
New environment for Twilio Video using Runtime, what is the service-sid?
I'm attempting to create a new environment for my Twilio Video project, specifically to modify the domain-suffix and unique-name. What is the service-sid?
# Install the twilio-cli from https://twil.io/cli
twilio…

futurealecks
- 13
- 3
0
votes
0 answers
Twilio: Room History
I am developing an API to retrieve the Twilio access token for a given chat room using Python. However I cannot seem to find a way to retrieve/list the activity history (call history, times when each participant joined the room, started calls and…

Teshan N.
- 2,307
- 3
- 30
- 59
0
votes
1 answer
Twilio video without a backend?
Do I still need a backend to generate access tokens for Twilio video?
Twilio's programmable video documentation talks about the client-side room creation option which can let us "get up and running without writing backend…

Qasim
- 1,554
- 1
- 13
- 22
0
votes
0 answers
Twilio Video - Video disappears after switching camera on iOS
I am using the Twilio Video JS SDK (https://www.twilio.com/docs/video) in a React app. I want to allow users to switch video cameras on mobile devices using the following function:
switchCamera = (isRear = false) => {
const { videoToken } =…

Neil Devas
- 21
- 8
0
votes
2 answers
Twilio Remote video not visible
I am using twilio for P2P video call in angular. Video call is working fine between Chrome 2 chrome but not between safari to chrome. When using safari, remote participant's video & audio is not visible in safari. I have already tried to change…

Ashish Gehlot
- 483
- 8
- 16
0
votes
2 answers
Twilio Programmable Video Using Javascript
working js file twilio-video.js: 1.14.1.
all code working in single page .aspx file.
if possible participant audio track disable share code.
//Participant is all participant connect with Room. For Ex. User-1 Screen Page Participant User-2, User-3…

Dipen Modi
- 11
- 4
0
votes
2 answers
Twilio Video MediaStreamTrack TypeError with Cordova
I’m developing a video live streaming app with Cordova using Twilio video conferencing. I’m trying to stream video from the device front-facing camera. It works well Android but I'm facing some issues on iOS.
I’m using a cordova-plugin-iosrtc plugin…

Obaida Alhassan
- 516
- 1
- 5
- 12
0
votes
1 answer
Twilio Invalid Access Token - Swift
I am attempting to follow this tutorial: https://www.youtube.com/watch?v=5lrdYBLEk60 and am getting Invalid Access Token - Code: 20101 returned when I follow everything to a tee. I changed nothing in the VideoQuickStart provided, other than adding…

douglasrcjames
- 1,133
- 3
- 17
- 37
0
votes
1 answer
End Twilio Video room using TWIML
Is there a way to end a room once one of the participants leave?
I found a way to do it using the REST API: set a status callback and when the event is participant-disconnected, update the Room's status to completed.
But I'm wondering if there's a…

Hilikus
- 9,954
- 14
- 65
- 118
0
votes
1 answer
Identify phone caller in Twilio video room
I'm using Twilio Programmable Voice to connect a caller to a Programmable Video Room via the Room verb. How can I get the ParticipantIdentity of the caller on the video side?
I see the phone caller's identity on the video side is their phone number…

Tim
- 810
- 9
- 20