Displaying 3 results from an estimated 3 matches for "recording_l".
Did you mean:
  recording_
  
2004 Aug 06
2
New YP listing code in icecast2
I have just committed this code to CVS, and here is more information about 
it for those interested :
- the spec that I went off of for the protocol can be found here -> 
http://www.oddsock.org/icecast2yp/spec.html
- since icecast2 now needs to potentially connect out to yp servers for 
communication, libcurl has been added as a dependency...I used curl 7.9.8...
- I also have currently
2004 Aug 06
0
New YP listing code in icecast2
...ver could look like so:
<xml>
    <stream_ID>3421</stream_ID>
    <listeners>12 20</listeners
    <artist>Shpongle</artist>
    <title>Around the world in a tea daze</title>
    <composer>Simon Posford & Raja Ram</composer>
    <recording_label>Twisted Records</recording_lable>
    <recroding_catID>TWSCD16</recording_catID>
    <year>2001</year>
</xml>
<p>And then the YP server can take that, parse out what it specifically can
work with and throw away what it can't.
So ultimately, if...
2004 Aug 06
1
New YP listing code in icecast2
...ml>
>     <stream_ID>3421</stream_ID>
>     <listeners>12 20</listeners
>     <artist>Shpongle</artist>
>     <title>Around the world in a tea daze</title>
>     <composer>Simon Posford & Raja Ram</composer>
>     <recording_label>Twisted Records</recording_lable>
>     <recroding_catID>TWSCD16</recording_catID>
>     <year>2001</year>
></xml>
XML is not really suited for this type of request, you don't need 
structured data for YP communication, you just want a varyin...