Gstreamer level

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

Gstreamer level

Ayan
Hi,

Can I add gstreamer level in between source and sink? If yes, how?

Ayan.
Reply | Threaded
Open this post in threaded view
|

Re: Gstreamer level

Nicolas Dufresne-5
Le mercredi 28 juin 2017 à 02:57 -0700, Ayan a écrit :
> Hi,
>
> Can I add gstreamer level in between source and sink? If yes, how?

Sure, on Linux with gst_parse_launch(), you could pass a pipeline
description that is similar to:

  "pulsesrc ! level ! pulsesink"

Then you just need to watch for the messages on the bus.

regards,
Nicolas
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel

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

Re: Gstreamer level

Ayan
Thanks, I'll try.