| Top |  |  |  |  | 
    GObject
    ╰── GInitiallyUnowned
        ╰── GstObject
            ╰── GstElement
                ╰── GstAudioDecoder
                    ╰── GstVorbisDec
This element decodes a Vorbis stream to raw float audio.
Vorbis is a royalty-freeaudio codec maintained by the Xiph.org Foundation. As it outputs raw float audio you will often need to put an audioconvert element after it.
| 1 | gst-launch-1.0 -v filesrc location=sine.ogg ! oggdemux ! vorbisdec ! audioconvert ! audioresample ! autoaudiosink | 
Decode an Ogg/Vorbis. To create an Ogg/Vorbis file refer to the documentation of vorbisenc.
| plugin | vorbis | 
| author | Benjamin Otte <otte@gnome.org>, Chris Lord <chris@openedhand.com> | 
| class | Codec/Decoder/Audio |