How can I implement live astrology consultation using WebRTC in Flutter? #201196
Replies: 4 comments
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
|
Hey there! 👋 Thanks for posting in the GitHub Community, @elianacammy ! You are more likely to get a useful response if you are posting in the applicable category. The Apps, API and Webhooks category is a place for our community to discuss and provide feedback GitHub's APIs and webhooks. GitHub provides two APIs: a REST API and a GraphQL API. Webhooks allow you to build or set up integrations, such as GitHub Apps or OAuth Apps, which subscribe to certain events on GitHub.com I've gone ahead and moved this to the correct category for you. Good luck! |
|
Skip Firebase, it's overkill for this.
|
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
Apps
Body
I'm developing an astrology app in Flutter where users can book appointments with astrologers and start a one-to-one live video consultation after the booking is confirmed.
The application includes:
Flutter mobile app
Node.js backend
Firebase Authentication
PostgreSQL database
I'm planning to use the flutter_webrtc package, but I'm confused about the signaling implementation and connection management.
My requirements are:
One-to-one video consultation
Appointment-based call initiation
Camera and microphone controls
Network reconnection handling
Secure communication between users and astrologers
My questions are:
What is the recommended signaling solution for Flutter (WebSocket, Socket.IO, or Firebase)?
How should SDP offers, answers, and ICE candidates be exchanged?
What are the best practices for handling reconnection during network interruptions?
How can I optimize WebRTC performance for production use?
All reactions