-
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
feat: new video buffer api #155
Conversation
@@ -31,16 +39,20 @@ def __init__( | |||
track: Track, | |||
loop: Optional[asyncio.AbstractEventLoop] = None, | |||
capacity: int = 0, | |||
format: Optional[proto_video_frame.VideoBufferType.ValueType] = None, |
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.
Can directly request a format from the VideoStream now
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.
This is great
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.
great! let's explain these concepts in the docstring please. that the native format will be returned.
def capture_frame( | ||
self, | ||
frame: VideoFrame, | ||
timestamp_us: int = 0, |
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.
how is timestamp used when the user sets it?
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.
looks good! a couple of comments.
where can I find the FFI protobuf changes?
@@ -31,16 +39,20 @@ def __init__( | |||
track: Track, | |||
loop: Optional[asyncio.AbstractEventLoop] = None, | |||
capacity: int = 0, | |||
format: Optional[proto_video_frame.VideoBufferType.ValueType] = None, |
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.
great! let's explain these concepts in the docstring please. that the native format will be returned.
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.
🚀
No description provided.