Check-in [7ef8a2b827]
Overview
Comment: | Add generic bitrate filter plugin, move functionality out of xiph channel. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7ef8a2b827fc12f9008af0ff46f27e99 |
User & Date: | mario on 2015-05-12 20:05:52 |
Other Links: | manifest | tags |
Context
2015-05-12
| ||
22:17 | Add plugin defaults (for newly added options, but previously active modules) in any case when starting with -D flag. Save settings.json in json.dumps(sort_keys=True) mode. check-in: 3497339549 user: mario tags: trunk | |
20:05 | Add generic bitrate filter plugin, move functionality out of xiph channel. check-in: 7ef8a2b827 user: mario tags: trunk | |
20:03 | Remove plugin #color: check-in: b4558a4599 user: mario tags: trunk | |
Changes
Added channels/filter_bitrate.py version [123128ab48].
|
Modified channels/xiph.py from [43c0a4353b] to [8fa7c91382].
1 2 3 4 5 6 7 8 9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - | # encoding: UTF-8 # api: streamtuner2 # title: Xiph.org # description: ICEcast radios. Scans per JSON API, slow XML, or raw directory. # type: channel # url: http://dir.xiph.org/ # version: 0.5 # category: radio # config: |
︙ | |||
33 34 35 36 37 38 39 | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | - + - - + | # slow, then slices out genres. No search. With the secret # "buffy" mode keeps all streams buffered. # # → "Forbidden Fruits" extracts from dir.xiph.org HTML pages, # with homepages and listener/max infos available. Also # enables live server searching. # |
︙ | |||
85 86 87 88 89 90 91 | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | - - - - | r = self.from_json_cache(cat, search) elif conf.xiph_source in ("xml", "buffy"): log.PROC("Xiph mode: xml.dom.minidom to traverse yp.xml") r = self.from_yp_xml(cat, search) else: log.PROC("Xiph mode: extract from dir.xiph.org HTML listings") r = self.from_raw_html(cat, search) |
︙ |