Is there a VP8 parser?

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

Is there a VP8 parser?

Andres Gonzalez
Hi,
I am trying to get some streaming pipelines working using tcpserversink and the various muxers.

The examples I have seen for h264 encoded streams have an h264parser element directly after the x264enc element. But for a VP8 encoded stream, I cannot find an equivalent "vp8parser"

Question: Is there a specific "vp8parser" element?

Thanks,

-Andres
Reply | Threaded
Open this post in threaded view
|

Re: Is there a VP8 parser?

Arjen Veenhuizen
As far as I know, there is no vp8parse and I have never needed it when working with VP8 streams (e.g. used in WebRTC). I know that the Kurento Media Server (which heavily relies on GStreamer) has (had?) a vp8parse element. I once compiled it myself and used it in regular GStreamer pipelines.
Reply | Threaded
Open this post in threaded view
|

Re: Is there a VP8 parser?

Olivier Crête-3
Hi,

Unlike H.264, the VP8 format can not be transported without some kind
of container has it doesn't include a startcode, so a parser is not
needed. You should get all of the information without it. So you should
be able to just do rtpvp8depay ! muxer.

Olivier

On Thu, 2016-08-04 at 13:15 -0700, Arjen Veenhuizen wrote:

> As far as I know, there is no vp8parse and I have never needed it
> when
> working with VP8 streams (e.g. used in WebRTC). I know that the
> Kurento
> Media Server (which heavily relies on GStreamer) has (had?) a
> vp8parse
> element. I once compiled it myself and used it in regular GStreamer
> pipelines.
>
>
>
> --
> View this message in context: http://gstreamer-devel.966125.n4.nabble
> .com/Is-there-a-VP8-parser-tp4678962p4678972.html
> Sent from the GStreamer-devel mailing list archive at Nabble.com.
> _______________________________________________
> gstreamer-devel mailing list
> [hidden email]
> https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
--
Olivier Crête
[hidden email]
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: Is there a VP8 parser?

Andres Gonzalez
Olivier,
Thanks for that clarification.
-Andres
Reply | Threaded
Open this post in threaded view
|

Re: Is there a VP8 parser?

Andres Gonzalez
In reply to this post by Arjen Veenhuizen
Arjen,
Thank you for your response and info.
-Andres