Playback as fast as possible

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

Playback as fast as possible

krrr
Hey!

I'm new to GStreamer, so sorry if it's kind of a dumb question, but how can
I stream audio data through my pipeline as fast as possible, the greatest
speed my computer can achieve?

I implemented a simple playbin with an appsink, and I have a bunch of songs
that I'd like to send through very quickly. I'm aware of the concept of
frame stepping, I also read this tutorial:
https://gstreamer.freedesktop.org/documentation/tutorials/basic/playback-speed.html,
but still can't figure out how to do this simply without keyboard handling.

Can someone explain it or show some example code?

Thanks in advance,
R



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

Re: Playback as fast as possible

Nicolas Dufresne-5
Le vendredi 07 décembre 2018 à 09:51 -0600, krrr a écrit :

> Hey!
>
> I'm new to GStreamer, so sorry if it's kind of a dumb question, but how can
> I stream audio data through my pipeline as fast as possible, the greatest
> speed my computer can achieve?
>
> I implemented a simple playbin with an appsink, and I have a bunch of songs
> that I'd like to send through very quickly. I'm aware of the concept of
> frame stepping, I also read this tutorial:
> https://gstreamer.freedesktop.org/documentation/tutorials/basic/playback-speed.html,
> but still can't figure out how to do this simply without keyboard handling.
>
> Can someone explain it or show some example code?
All sink element have a property called "sync". If you set this to
false, it will disable clock synchronization.

  g_object_set (sink, "sync", FALSE, NULL);

>
> Thanks in advance,
> R
>
>
>
> --
> Sent from: http://gstreamer-devel.966125.n4.nabble.com/
> _______________________________________________
> 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 (201 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Playback as fast as possible

krrr
Thank you!



--
Sent from: http://gstreamer-devel.966125.n4.nabble.com/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel