GithubHelp home page GithubHelp logo

Comments (24)

dl4mmers avatar dl4mmers commented on June 10, 2024 3

@hthetiot Yeah I'm using webrtc-adapter, but I've looked through the swift code of RTCPeerConnection (https://github.com/cordova-rtc/cordova-plugin-iosrtc/blob/master/src/PluginRTCPeerConnection.swift#L324) and saw the check IsUnifiedPlan() and then noticed that I'm still using plan-b on iOS. I set it to unified-plan. Now with sdpSemantics: 'unified-plan' I get correct objects via RTCPeerConnection.getSenders(), RTCPeerConnection.getReceivers() and RTCPeerConnection.getTransceivers().

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024 1

In any case I will leave this issue open to.see if updating to latest libwebrtc fix thr issues.

from cordova-plugin-iosrtc.

shrhoads avatar shrhoads commented on June 10, 2024 1

I think this project may still be useful if the H264 encoding issue can be fixed. It would be nice to be able to provide higher quality encoding than is available in the safari webrtc support.

from cordova-plugin-iosrtc.

dl4mmers avatar dl4mmers commented on June 10, 2024 1

Hey @hthetiot, I continued testing PR #748 with my application and I noticed that, while H264 works fine, some WebRTC API's do not work like with [email protected]. I then tested [email protected] and it's the same case:

After initiating a call and sending audio + video from iPhone 14 Pro to chrome browser

  • RTCPeerConnection.getSenders() 
  • RTCPeerConnection.getReceivers() 
  • RTCPeerConnection.getTransceivers()

are always returning empty arrays in PR #748 and [email protected], while with version [email protected] there are correct RTCRtpSender objects inside. In chrome there are also correct values. So, when upgrading to latest iosrtc, I would have to use deprecated functions RTCPeerConnection.getLocalStreams() and RTCPeerConnection.getRemoteStreams().

Is this a bug?

from cordova-plugin-iosrtc.

RSATom avatar RSATom commented on June 10, 2024 1

@hthetiot we are using WebRTC library from Chrome v102 pretty long time without any significant issues. But I have to check if we are using getSenders() | getReceivers() | getTransceivers()... I'll try to find time for that soon.

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024

Versions before iOS 15.4 with the same source code are not affected by this provlem

I don't think compilation of WebRTCLib will help here, and BTW, you don't need that plugin to use WebRTC using iOS 15.4.

Try without the plugin (comment register global) to see if Native iOS WebRTC also have the same performance issue.

from cordova-plugin-iosrtc.

derMani avatar derMani commented on June 10, 2024

Update: Without using the globals of cordova-iosrtc: H264 works just fine with "native" WebRTC of Webkit.

Pros:

  • Good performance
  • The Video is an actual html element and the streams are actual javascript objects
  • One plugin less in your project

Cons:

  • You get the camera prompt in every session. You can work around this behaviour in WKWebView with "requestMediaCapturePermissionForOrigin"
  • Works only with iOS 15+
  • You will run into some weird WKWebView WebRTC bugs

The plugin had a good run, but I think most users of this plugin can now move on to the "native" WebRTC of Webkit

Anyway: The libwebrtc bug remains for H264 performance. This also happens in non cordova based projects when using libwebrtc

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024

Thank you @derMani

The plugin had a good run, but I think most users of this plugin can now move on to the "native" WebRTC of Webkit

I agree, since iOS 15+, you don't really need the plugin if you don't have to put speaker on or support old iOS versions. Still you will have to deal with know ios safari webrtc issues that the plugin handle to manage (auto play, speaker, background).

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024

@derMani see webrtc-100 PR that update webrtc to v100 that pass the CI (include full build test https://github.com/cordova-rtc/cordova-plugin-iosrtc/blob/master/.github/workflows/main.yml#L59)

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024

@shrhoads

I think this project may still be useful if the H264 encoding issue can be fixed. It would be nice to be able to provide higher quality encoding than is available in the safari webrtc support.

Then, can you then try #748 to see if iosrtc rendering from h264 is better?

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024

Ping @derMani @shrhoads

#744 (comment)

from cordova-plugin-iosrtc.

dl4mmers avatar dl4mmers commented on June 10, 2024

@shrhoads

I think this project may still be useful if the H264 encoding issue can be fixed. It would be nice to be able to provide higher quality encoding than is available in the safari webrtc support.

Then, can you then try #748 to see if iosrtc rendering from h264 is better?

Hey @hthetiot,

I've tested PR #748 on iPhone 14 Pro (iOS 16.3.1) and it fixes the H264 performance and fps issues.

iosrtc_h264_fps_m100_vs_6 0 21

from cordova-plugin-iosrtc.

derMani avatar derMani commented on June 10, 2024

Hi together, sorry für the late reply. I can confirm, that this works now without stuttering (also on iOS16) 👍

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024

Hi together, sorry für the late reply. I can confirm, that this works now without stuttering (also on iOS16) 👍

@derMani using #748 also ?

In any case I'm going to release it as soon as possible.

from cordova-plugin-iosrtc.

derMani avatar derMani commented on June 10, 2024

Yep, #748 works fine 👍

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024

Yep, #748 works fine 👍

Thx this help a lot to validate build.

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024

Thank you @dl4mmers that really helpful.
I'm a bit surprised of this issue.
Let me investigate.

@RSATom would you mind check the comment above ?

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024

@RSATom can you do a PR for WebRTC 102?
We have PR for 100 already here #748

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024

@dl4mmers do you know if you use webrtc-adapter that may be the cause of the issue, I have seen thr shim F* iosrtc sham in the past ?

from cordova-plugin-iosrtc.

RSATom avatar RSATom commented on June 10, 2024

@hthetiot I think I did PRs for all my changes to iosrtc (and all of them was accepted if I remember correctly). What about WebRTC lib - we are using patched one
https://github.com/WebRTSP/WebRTC/commits/m102-patched
https://github.com/WebRTSP/libWebRTC/releases
And I don't know if it's good idea to use that patched library version in iosrtc.

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024

@RSATom OK I will build or may be move to the jisti one use by react-native-webrtc and made original maintainers of iosrtc.

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024

I will set unified-plan by default in next release I think it is time. Will avoid wasting people time.

from cordova-plugin-iosrtc.

dl4mmers avatar dl4mmers commented on June 10, 2024

In any case I'm going to release it as soon as possible.

Hey @hthetiot, any news on releasing 10.x with WebRTC M100 or M102?

from cordova-plugin-iosrtc.

hthetiot avatar hthetiot commented on June 10, 2024

@dl4mmers yes, just need testing on that PR #748 see testing instructions in description. I will rebase master this wk and re ping here. I don't want to release without community feedback to risky.

from cordova-plugin-iosrtc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.