Using idintity plugin to tap images from a gstreamer pipeling into program

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Using idintity plugin to tap images from a gstreamer pipeling into program

tiko
Dear dev's,

given a program "myApp" and any pipeline "someSrc ! identity name=xyz !
filesink location=anyfile.mp4".
I want to call my program such, that I can tap the images from the
pipeline given the identity name "xyz":
./myApp --pipeline="someSrc ! identity name=xyz ! filesink
location=anyfile.mp4"

I have an example for gstreamer0.10, but porting it to gstreamer1.0
seems not trivial to me.
Does anyone of you know a good starting example, so that I can go on
with my task?

Greetings,
Timo


--

Timo Korthals, M.Sc.
Universität Bielefeld
AG Kognitronik & Sensorik
Exzellenzcluster Cognitive Interaction Technology (CITEC)
Inspiration 1 (Zehlendorfer Damm 199)
33619 Bielefeld - Germany

Office  : 3.041
Phone   : +49 521 106-67367
eMail   : [hidden email]
Internet: http://www.ks.cit-ec.uni-bielefeld.de/

_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: Using idintity plugin to tap images from a gstreamer pipeling into program

Sebastian Dröge-3
On Fr, 2016-09-23 at 17:44 +0200, Timo Korthals wrote:

> Dear dev's,
>
> given a program "myApp" and any pipeline "someSrc ! identity name=xyz ! 
> filesink location=anyfile.mp4".
> I want to call my program such, that I can tap the images from the 
> pipeline given the identity name "xyz":
> ./myApp --pipeline="someSrc ! identity name=xyz ! filesink 
> location=anyfile.mp4"
>
> I have an example for gstreamer0.10, but porting it to gstreamer1.0 
> seems not trivial to me.
> Does anyone of you know a good starting example, so that I can go on 
> with my task?
Nothing really changed there between 0.10 and 1.x in that regard. What
problems do you run into when porting?

--
Sebastian Dröge, Centricular Ltd · http://www.centricular.com
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel

signature.asc (985 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Using idintity plugin to tap images from a gstreamer pipeling into program

tiko
Hi Sebastian,

actually, it is the error described in this Post.
We managed by using the appsink plugin which is way more straight-forward to use.
But I still wonder why my proposed port does not work (s.t. running out of memory after a while).