We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have two pipelines, the first one:
GST_TRACERS="interlatency" GST_DEBUG=GST_TRACER:7 gst-launch-1.0 \ videotestsrc ! \ 'video/x-raw,width=300,height=300,format=(string)I420,framerate=(fraction)10/1' ! \ videoconvert ! \ shmsink socket-path=/tmp/foo shm-size=20000000 wait-for-connection=0
yields the following output:
... 0:00:09.090158261 13199 0x5576daa400 TRACE GST_TRACER :0:: interlatency, from_pad=(string)videotestsrc0_src, to_pad=(string)shmsink0_sink, time=(string)0:00:00.000523762; ...
Awesome!
The second pipeline:
GST_TRACERS="interlatency" GST_DEBUG=GST_TRACER:7 gst-launch-1.0 \ shmsrc socket-path=/tmp/foo ! \ 'video/x-raw, width=300,height=300, format=(string)I420, framerate=(fraction)10/1' ! \ videoconvert ! \ appsink
yields the following:
... 0:00:02.387404889 13400 0x5595e28f20 TRACE GST_TRACER :0:: interlatency, from_pad=(string)shmsrc0_src, to_pad=(string)appsink0_sink, time=(string)0:00:00.001616600; ...
Again -- very awesome!
But how can I measure the interlatency between shmsink and shmsrc?
shmsink
shmsrc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have two pipelines, the first one:
yields the following output:
Awesome!
The second pipeline:
yields the following:
Again -- very awesome!
But how can I measure the interlatency between
shmsink
andshmsrc
?The text was updated successfully, but these errors were encountered: