Questions tagged [webrtc-ios]

56 questions
0
votes
0 answers

Import GoogleWebRTC with pod but no header files

use_frameworks! install! 'cocoapods', :preserve_pod_file_structure => true platform :ios, '11.0' source 'https://github.com/CocoaPods/Specs.git' target 'WebRTCDemo' do inherit! :search_paths pod 'GoogleWebRTC' end Only static…
0
votes
0 answers

IOS error: Media stream has no audio tracks createMediaStreamSource

I tried to mix remote audio tracks in one track and replace my local stream but I got the following error InvalidStateError: Media stream has no audio tracks createMediaStreamSource Note: This happen in IOS and I used sipjs, angular , Ionic, and…
0
votes
0 answers

cordova-plugin-iosrtc build failure, missing -I include directory options

Cordova on ios, on a mac, I need to use cordova-pluin-iosrtc. Everything seemed to build and run to a point, until the camera could not be used because of no permissions granted. Now how to do that? I found that I should add something like this to…
Gunther Schadow
  • 1,490
  • 13
  • 22
0
votes
0 answers

Simulcast in iOS WebRTC is sending only 1 track instead of 3

We are trying to enable Simulcast on our iOS application. Before connecting to room, we enabled simulcast, and got the following in offer payload. a=rid:q send a=rid:h send a=rid:f send a=simulcast:send q;h;f The payload shows that 3 tracks are…
haider_kazal
  • 3,448
  • 2
  • 20
  • 42
0
votes
1 answer

how to fix black video streaming on ios - kurento

i have a video conference app built in nodejs and kurento. when i connect my camera on desktop/Android everything is ok. when i connect camera on iphone, i can see the shared video on iphone (locally) very well, but the camera on other devices…
0
votes
1 answer

Xamarin WebRTC in IOS WebView not working

I'm trying to integrate webrtc into Xamarin Forms app using webview Android is working fine but in IOS streaming camera not working . I think the problem in IOS WebView render here's my render public class HybridWebViewRenderer : WkWebViewRenderer,…
Amr Kamal
  • 244
  • 1
  • 5
  • 21
0
votes
1 answer

Why are some .h files missing when compiling wbrtc_ios as a framework?

I am new to WebRTC stuff. I cloned the webrtc_ios main branch, and I built the framework as instructed here with the python script for arm64. When I add this to my Xcode project as a framework, everything is fine. Project builds, I can import files…
0
votes
1 answer

Twilio room type not set to GO even after changing room settings in console

I'm following the links below to setup Twilio WebRTC Go - one to one video calling app on iOS using Swift https://www.twilio.com/blog/announcing-twilio-video-webrtc-go https://github.com/twilio/twilio-video-app-ios But when I run the app and…
Arjun
  • 1,477
  • 1
  • 13
  • 23
0
votes
1 answer

https://appr.tc is down. How to set up own signaling server/ room server URL?

I'd developed a video calling app on Android using WebRTC and was using the https://appr.tc as the signaling server (Room Server URL). But according to https://groups.google.com/g/discuss-webrtc/c/H7XuZfgkGH0 apprtc is now taken down. When I run the…
Arjun
  • 1,477
  • 1
  • 13
  • 23
0
votes
0 answers

How to close iOS webrtc mircoPhone using?

My scene: In my iOS app, it just play remoteVideo by using webrtc. My project's webrtc is WebRTC iOS framework in cocoapods.(https://cocoapods.org/pods/WebRTC) Here is my code: RTCRtpTransceiverInit *transceiverInit = [[RTCRtpTransceiverInit…
wochao
  • 1
  • 1
0
votes
1 answer

WebRTC Call want to run dial sound

I am working on WebRTC application and everything is doing fine on call but we want to run dial sound when call is ringing until other side accpet the call i try to run audio (wav file) but it is play for a sec and then i feel it is muted i guess it…
0
votes
1 answer

How to filter WebRTC codecs in the native iOS app

Is there any way to set audio/video codec preferences for RTP sender in iOS WebRTC lib before SDP creation? RTCRtpSender -> parameters -> codecs array is empty until the peer connection ice gathering state is complete, but this state is only…
0
votes
1 answer

Capacitor 3 React App mediaDevices is undefined, iOS 14.5

I have a React web app that I am wrapping with Capacitor. Most things work fine, but I can't get navigator.mediaDevices or navigator.getUserMedia to be anything other than undefined. I get no popup requesting the user's permission either. I have…
Geoff Davids
  • 887
  • 12
  • 15
0
votes
1 answer

Header is not found during archiving a Cordova app ('WebRTC/RTCAudioSource.h' not found)

I've been trying to figure out this issue for a couple of days, but still have no luck. I have a legacy application based on Ionic v1, Cordova 9 and cordova-ios 6. We use cordova-plugin-iosrtc for calling feature, and until recently, it was the…
EternalLight
  • 1,323
  • 1
  • 11
  • 19
0
votes
1 answer

Feed frames one at a time into WebRTC iOS

I am trying to make an iOS app that does some pre-processing on video from the camera, then sends it out over webrtc. I am doing the pre-processing on each individual frame using the AVCaptureVideoDataOutputSampleBufferDelegate protocol and then…
Jehan
  • 2,701
  • 2
  • 23
  • 28