-
Notifications
You must be signed in to change notification settings - Fork 60
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
Update README #236
Update README #236
Conversation
hey @davidzhao , do you mind if the "Receive video frames of a subscribed track" section of the README is also updated as part of this PR? The README doesn't show the current method of receiving video frames and can be a bit confusing to follow. possible update ( gotten from the wgpu_room example) let video_stream = NativeVideoStream::new(rtc_track);
while let Some(frame) = async_handle.block_on(video_sink.next()) {
....
let buffer = frame.buffer.to_i420();
.....
} I'm open to helping contribute to this PR or putting up a new one after this one is merged. |
@cs50victor yeah! I'd welcome your feedback here. Let me know if there's anything you think we should change. |
No description provided.