<html><head><meta http-equiv="Content-Type" content="text/html charset=iso-8859-1"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><blockquote type="cite">I am trying to add VP8/VORBIS codecs to VLC when it uses your library to<br>receive such streams.<br>To do this I need to get the VORBIS parameters (included in the a=fmtp<br>configuration line).<br><br>I noticed you have some functions to parse this config string, so I<br>tried to call parseGeneralConfigStr but it fails.<br>Is it because this function can't parse vorbis config ?<br></blockquote><div><br></div></div>Correct - because "parseGeneralConfigStr()" isn't the right function for decoding that data.  (That function is used only for payload formats (e.g., MPEG-4 audio or video) where the configuration string is encoded as a hexadecimal string: two hex digits for each byte of binary data - e.g. "DEADBEEFB00B".)  Vorbis, like H.264, uses a more efficient encoding: Base64.<div><br></div><div>According to RFC 5215 (the Vorbis audio RTP payload format specification), section 6, the configuration string (which is accessible, from client code, using "MediaSubsession::fmtp_configuration()" (or, equivalently, "MediaSubsession::fmtp_config()")) is the Base64 representation of the packed structure defined in section 3.2.1.</div><div><br></div><div>Therefore, first call "base64Decode()" (see "liveMedia/include/Base64.hh") on the configuration string.  That should give you a binary data structure that's formatted according to section 3.2.1 of RFC 5215.  Depending on what your Vorbis decoder accepts, you might need to do further parsing of that binary data.</div><div><br></div><div>BTW, if, for testing, you need a RTSP Vorbis audio (and VP8 video) stream, then you can use the "LIVE555 Media Server" to stream a ".webm" file (which contains Vorbis audio and VP8 video tracks).  Our server code automatically demultiplexes these tracks from the file for streaming.  (If you need examples of such files, just let me know.)</div><br><div apple-content-edited="true">
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; ">Ross Finlayson<br>Live Networks, Inc.<br><a href="http://www.live555.com/">http://www.live555.com/</a></span></span>
</div>
<br></body></html>