react-native-twilio-video-webrtc icon indicating copy to clipboard operation
react-native-twilio-video-webrtc copied to clipboard

Mobile App user is unable to see other participant screen when participant is joined through the video consultation in iOS safari and chrome browsers

Open anupsamanta opened this issue 3 years ago • 3 comments

Steps to reproduce

  1. Two user is connected in video call. One from React-Native mobile application and other from iPhone's safari or chrome.

Expected behaviour

Both users should be visible to each other in video call.(Participant's preview should be seen in each side)

Actual behaviour

But React-Native mobile app user can not see video of the user, who is connected from iPhone's safari or chrome.

Environment

  • React Native version: 68.2.0
  • React Native platform + platform version: iOS 9.0

react-native-twilio-video-webrtc

Please note: This is happening in the particular device model : RealMe Nazro

anupsamanta avatar Jul 19 '22 05:07 anupsamanta

Can you verify that the RN device supports the codecs for the room? The supported codecs are returned in the onLocalParticipantSupportedCodecs callback. See https://www.twilio.com/docs/video/managing-codecs for how you might want to set up the room depending on the platform of the participants.

slycoder avatar Aug 09 '22 05:08 slycoder

Hi 👋🏼, how did you handle solving this problem? I have a similar problem, but on the other side (the web application) I can't see what the Android device's camera transmits, however, I can hear it. With iOS it works fine.

omairys avatar Nov 10 '22 16:11 omairys

You need to add a line preferredVideoCodecs: ['VP8'] in 'Video.connect

Huyenduc avatar Sep 19 '23 10:09 Huyenduc