Displaying 2 results from an estimated 2 matches for "zavedil".
2013 May 17
2
Radio player for FirefoxOS
Hi,
I have pushed my radio player for FxOS to GitHub:
https://github.com/emilis/worldradioplayer
Currently it uses a precompiled data from http://dir.xiph.org/yp.xml:
https://raw.github.com/emilis/worldradioplayer/master/static/js/data/xiph.org.stations.json
I will have to switch to asynchronous station list loading and filtering
in the near future and then will nag you again about the JSON API
2013 May 22
5
Radio player for FirefoxOS
Hi, Emilis,
I have two working Icecast players which implement client-side parsing of
yp.xml and searching then through it:
- Python, can either transform the yp.xml into SQLite database and then
search inside, or can store the yp.xml locally and transfer in into DOM,
then search it.
http://www.zavedil.com/software-xbmc-icecast
- Java (Android), same algorithm as Python but only the SQLite version.
Originally was done in DOM (fast parsing, but uses too much memory), then
switched to SAX (slow parsing, but works always).
http://www.zavedil.com/software-android-icecast-player
Feel free to use ide...