Check-in [3f1b3bd882]
Overview
Comment: | Fix `audioformat` property name. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3f1b3bd882f4d7a8c771a4e51102ecfc |
User & Date: | mario on 2015-05-02 05:44:27 |
Other Links: | manifest | tags |
Context
2015-05-02
| ||
05:45 | New channel plugin for Radionomy. check-in: c734771f92 user: mario tags: trunk | |
05:44 | Fix `audioformat` property name. check-in: 3f1b3bd882 user: mario tags: trunk | |
05:44 | Stub category tree building main[] in case of wrapped primary group. Add uikit.bg on STATE_ACTIVE, skip existing EventBox widgets. check-in: 6bf4c5e61e user: mario tags: trunk | |
Changes
Modified channels/filtermusic.py from [3914aaad44] to [35c1830b55].
︙ | ︙ | |||
33 34 35 36 37 38 39 | # filtermusic.net class filtermusic (ChannelPlugin): # control attributes has_search = False listformat = "srv" | | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | # filtermusic.net class filtermusic (ChannelPlugin): # control attributes has_search = False listformat = "srv" audioformat = "audio/mpeg" titles = dict(listeners=False, bitrate=False, playing=False) categories = ["House / Dance", "Lounge Grooves", "Rock / Metal", "Breaks / Drum'n'Bass", "Various / Independent", "Downtempo / Ambient", "60's / 70's / 80's / 90's", "Hits / Mainstream", "Electronica / Industrial", "Techno / Trance", "HipHop / RnB", "Classical", "Eclectic", "Funk / Soul / Disco", "Reggae / Dub / Dancehall", "International / Ethnic", "Jazz", "Latin / Salsa / Tango"] # static def update_categories(self): pass |
︙ | ︙ |
Modified channels/somafm.py from [b4e377590b] to [60212d55e2].
︙ | ︙ | |||
33 34 35 36 37 38 39 | # TuneIn radio directory class somafm (ChannelPlugin): # description has_search = False listformat = "pls" | | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | # TuneIn radio directory class somafm (ChannelPlugin): # description has_search = False listformat = "pls" audioformat = "audio/aac" titles = dict(listeners=False, playing="Description") categories = ["listen", "support"] streams = { "listen": [ {'genre': 'ambient', 'listeners': 2187, 'title': 'Drone Zone', 'url': 'http://somafm.com/dronezone64.pls', 'bitrate': 64, 'homepage': 'http://somafm.com/dronezone/', 'playing': 'Served best chilled, safe with most medications. Atmospheric textures with minimal beats.'}, {'genre': 'alternative', 'listeners': 420, 'title': 'Indie Pop Rocks!', 'url': 'http://somafm.com/indiepop64.pls', 'bitrate': 64, 'homepage': 'http://somafm.com/indiepop/', 'playing': 'New and classic favorite indie pop tracks.'}, |
︙ | ︙ |