Hi, Can gstreamer fast decode h264/5 steam and return only keyframes? That would be usefull for opencv processing of live streams. Thanks in advance! _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
Le samedi 11 mars 2017 à 16:39 +0300, Krutskikh Ivan a écrit :
> Hi, > > Can gstreamer fast decode h264/5 steam and return only keyframes? > That would be usefull for opencv processing of live streams. I believe this should work in recent version with the GST_SEEK_FLAG_KEY_UNIT. Pause you streamr, and then operate a flushing seek with this flag set. > > Thanks in advance! > _______________________________________________ > gstreamer-devel mailing list > [hidden email] > https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel signature.asc (188 bytes) Download Attachment |
On Sat, 2017-03-11 at 11:20 -0500, Nicolas Dufresne wrote:
> > Can gstreamer fast decode h264/5 steam and return only keyframes? > > That would be usefull for opencv processing of live streams. > > I believe this should work in recent version with the > GST_SEEK_FLAG_KEY_UNIT. Pause you streamr, and then operate a > flushing seek with this flag set. You probably meant GST_SEEK_FLAG_TRICKMODE_KEY_UNITS ? :) Question is, what does one do when seeking is not supported? In that case one would have to add a pad probe on the decoder sink pad or parser src pad or so and drop all frames that are flagged as delta units via the buffer flags or such. Theoretically a seek without start/stop position change to just change the flags should work too, but I wouldn't bet on it :) Cheers -Tim -- Tim Müller, Centricular Ltd - http://www.centricular.com _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
Le 11 mars 2017 2:59 PM, "Tim Müller" <[hidden email]> a écrit :
Yes thanks.
I'm wondering if a generic property on the base class could also work? Is there any format known to not work without the deltas?
_______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
In reply to this post by Tim Müller
On Sat, 2017-03-11 at 19:44 +0000, Tim Müller wrote:
> On Sat, 2017-03-11 at 11:20 -0500, Nicolas Dufresne wrote: > > > > Can gstreamer fast decode h264/5 steam and return only keyframes? > > > That would be usefull for opencv processing of live streams. > > > > I believe this should work in recent version with the > > GST_SEEK_FLAG_KEY_UNIT. Pause you streamr, and then operate a > > flushing seek with this flag set. > > You probably meant GST_SEEK_FLAG_TRICKMODE_KEY_UNITS ? :) > > Question is, what does one do when seeking is not supported? In that > case one would have to add a pad probe on the decoder sink pad or > parser src pad or so and drop all frames that are flagged as delta > units via the buffer flags or such. You could also add the identity element before the decoder and set the "drop-buffer-flags" property to GST_BUFFER_FLAG_DELTA_UNIT -- Olivier Crête [hidden email] _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
Thanks a lot! Can someone provide a quick example of subj in python or c? Just for performance tests. 2017-03-13 21:37 GMT+03:00 Olivier Crête <[hidden email]>: On Sat, 2017-03-11 at 19:44 +0000, Tim Müller wrote: _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
In reply to this post by Tim Müller
Hello, I was wondering where you would implement the flushing seek. Would you
add a listener for signals from the decoder for when a new frame has entered its sink pad? -- Sent from: http://gstreamer-devel.966125.n4.nabble.com/ _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
Free forum by Nabble | Edit this page |