You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think this tutorial may help you https://flutter.dev/docs/cookbook/plugins/picture-using-camera with basic concepts . But if you want to take the camera preview from a user1 and send it to user2, i think you will have to capture a video from the user1, send it using whatever you want, and use a stream builder to receive that video on user2.
I want realtime camera stream User1 to User2, and User2 can see realtime video.
I find this code but that is not working-
void cameraBytesToDetector({@required CameraController camera}){
camera.startByteStream( (image) {
// do something with the image stream here
});
}
How to stream camera and preview Camera stream is you have any idea please tell me
The text was updated successfully, but these errors were encountered: