-
Notifications
You must be signed in to change notification settings - Fork 116
Examples for local camera publishing #768
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
base: main
Are you sure you want to change the base?
Conversation
|
|
||
| [dependencies] | ||
| tokio = { version = "1", features = ["full", "parking_lot"] } | ||
| livekit = { workspace = true, features = ["rustls-tls-native-roots"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the need for the rustls-tls-native-roots feature for this example? This will force the feature on the whole workspace, not just this example.
| let mut sum_capture_ms = 0.0; | ||
| let mut sum_sleep_ms = 0.0; | ||
| let mut sum_iter_ms = 0.0; | ||
| loop { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest to let the user break this loop with Ctrl + C like Be-ing@81acf7c
No description provided.