9,189
questions
-1
votes
0
answers
11
views
How to view logs from multiple devices in one place in Xcode?
In Xcode, when developing features that require "multiple devices", such as WebRTC or Multipeer Connectivity, how can we view logs from both devices in a single place?
For instance, I'm ...
0
votes
0
answers
7
views
react-native-webrtc build with preview profile crashes
I'm having a problem with react-native-webrtc:
My eas build in profile development works completely, but my builds in preview crash as soon as they open.
The eas.json has the default content.
I don't ...
0
votes
0
answers
20
views
Chrome displays the message "Unable to start camera" in a video conference through the Metered.ca iframe
I have developed a web application in C#/HTML/JS and I am using the embedded iframe feature from Metered Video SDK (metered.ca). The meeting is taking place with only 2 participants. Both are joining ...
0
votes
0
answers
29
views
How to use raw PCM audio data as a custom audio source in WebRTC on Android?
I'm integrating WebRTC into my project (using Java library), and as I can see, it can use pre-defined audio sources like microphone.
I've already implemented a custom audio source that generates PCM ...
0
votes
0
answers
12
views
Issue recording a new canvas stream with Kurento Recorder
I am using kurento-utils, v7.0.0, to stream and record a videocall between two users.
I am using Kurento Media Server 7 and the file format of the recorded videos is in WEBM.
I am altering one of the ...
-8
votes
0
answers
48
views
How does Chromium deal with the relationship between stride and width? [closed]
I have a problem that the stride is different from the width, which causes the WebRTC video presenting stripes.
E.G. stride is 1480, width is 1440, how to adapt the width in codes:
void ...
-2
votes
0
answers
21
views
How to do a mulitistreming platform where i can stream on youtube,facebook etc. when i start live on my server [closed]
I’m creating a streaming platform where users can start a live stream that simultaneously goes live on other platforms like YouTube, Facebook, Twitch, LinkedIn, Kick, Loco, and Discord (web version). ...
0
votes
0
answers
20
views
DataChannel only opens after initiating RTC connection twice
I'm trying to make a simple chat app in React using WebRTC datachannels, with a WebSocket signaling server. The RTCPeerConnection establishes properly and ICE candidates are being sent after ...
0
votes
0
answers
9
views
Agora Token Authentication Error: Temporary Token Works but Server-Generated Token Fails
I'm using Agora's Web SDK to implement a video-calling feature in my app. When I generate a temporary token through the Agora Console, everything works fine, and users can join channels without any ...
0
votes
0
answers
35
views
Two or more user joins the voice call WebRTC
const socket = io();
const peers = {};
const localStream = new MediaStream();
const localAvatar = document.getElementById('local-avatar');
const camera = document.getElementById('camera');
const speed ...
0
votes
0
answers
20
views
React Component with simple-peer can't seem to complete an ICE server connection to a Janus WebRTC server
I am working on a Vite-TS based React application and a Janus Gateway WebRTC server with Record&Play plugin; the application peer ideally initiates everything, provides a media stream, and the ...
0
votes
0
answers
20
views
iisnode encountered an error when processing the request. with HTTP subStatus: 1001
I am a beginner. I have created a WebRTC application using React, along with Socket.IO and Peer. Currently, I am facing a problem when testing it on the server, and I encountered this error. What is ...
0
votes
0
answers
20
views
Retaining DeviceID's in EnumerateDevices chromium API when using Citrix
Reviving an old question here, but I am experiencing the an issue in my Citrix environment. EnumerateDevices is returning different device IDs when logging in and out of a Citrix session, even though ...
1
vote
0
answers
35
views
Initialize WebRTC Call When Phone is Locked
I'm working on a React Native project where I’m implementing peer-to-peer calls using React Native WebRTC and React Native CallKeep. Everything works fine when the app is open and active, but I'm ...
0
votes
0
answers
29
views
Capture frame/image from react-native-webrtc stream
Iam using react-native-webrtc to extract frame/image but it's not working,
I tried to use react-native-canvas and react-native-viewshot but it shows blank image on android. Is there anyway to achieve ...