-
Notifications
You must be signed in to change notification settings - Fork 19
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
Missing CaptureTime #78
Comments
I'm not sure what's going on there. Could you open a bug at crbug.com with a repro case? I'll be able to route it to the right people there. Thanks! |
@Diceshake, did you figure out the issue or open a bug? Otherwise, I will close this issue by EOW. Thanks! |
@tguilbert-google, thanks for following up! In my original post I was connecting a Golang implementation of Webrtc to the browser, so I felt the problem was out of scope. I was able to get things working following this Webrtc Sample. Enjoying the API so far 😄 |
Great, thanks! Happy coding! |
Hello there. I have encountered the same issue. After further testing, it appears a bidirectional video stream is required in order to receive the capture time. Packets must be send both ways too, an inactive track/stream won't do it. As a workaround, I was able to capture stream from a blank canvas, add it to the peer connection outbound, and modify one pixel in it to force frames to be sent. I have several data channels open as well and those do not trigger the captureTime to be received either. |
I opened a chromium bug, since this is likely a Chrome implementation issue, more than a spec issue. I am re-opening this thread for visibility, but the core of the investigation/discussion should go into the Chromium bug. |
see webrtc/samples#1408 (comment) |
Should the value of the abs-capture-time header extension be used when available? https://w3c.github.io/webrtc-extensions/#dom-rtcrtpcontributingsource-capturetimestamp |
As of Canary 129.0.6632.0 am seeing Am also seeing this behavior in a WebTransport echo sample that includes serialization and transport. The sample is not serializing Live demo: https://webrtc.internaut.com/wc/wcWorker3/ |
I am interested in using CaptureTime to sync remote WebRTC videos but the attribute seems to be missing when I requestVideoFrameCallback while all other attributes are present.
Is there something my RTCPeerConnections need for this property? Do I need to handle the Sender/Report packets?
The text was updated successfully, but these errors were encountered: