-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Picture in Picture feature #654
Comments
PIP is not supported yet. I was facing the same and Chime not supporting as of now is what their support team replied. |
You can implement PiP with Using
so you have no customization options like having a close button to leave the call. You can instead use Consider a call with multiple video tiles and you want to show just the active speaker in your PiP window. Considering you're using a collection view to show a grid of videos, sampling a single cell is complex to manage because of cell reuse. The easy way here is to render the entire collection view configured as you want, but as I mentioned the CPU usage is too high. ![]() What do other competitors do?Other video service providers offer direct integration and helper classes so I'll share them here for reference: Twilio provides a 100ms provides guidance and an example project with a sample buffer view:
Zoom provides seamless integration: |
Describe the bug
I'm struggling to enable Picture-in-Picture mode for videos when the user navigates away from my application. Is this functionality feasible, and if so, how might it be implemented?
To Reproduce
Steps to reproduce the behavior:
Expected behavior
A minimized Video of the callee should show in a corner, if the user navigates away from the app to another. And then it should be clickable to open back up to the app. This feature is on iOS FaceTime and WhatsApp: Multitask with Picture in Picture on iPhone
Please help.
The text was updated successfully, but these errors were encountered: