Check-in [f5a59de6b8]
Comment: | Compact plugin comments to be more user-targetted. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f5a59de6b8ebfc416e7dc892b23eee96 |
User & Date: | mario on 2015-04-02 17:38:08 |
Other Links: | manifest | tags |
2015-04-02
| ||
18:40 | Fix incorrent indendation. check-in: 85b88fac15 user: mario tags: trunk | |
17:38 | Compact plugin comments to be more user-targetted. check-in: f5a59de6b8 user: mario tags: trunk | |
15:50 | Initial version of Radio-Browser.info API plugin. Built-in stub favicon. (Maybe later support station submissions here too, just like MOR.) check-in: 8fcde37560 user: mario tags: trunk | |
Modified ahttp.py from [1df75bd959] to [20908d5cb6].
1 2 3 4 5 6 7 8 | # # encoding: UTF-8 # api: streamtuner2 # type: functions # title: http download / methods # description: http utility # version: 1.4 # | | < > | > > < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # # encoding: UTF-8 # api: streamtuner2 # type: functions # title: http download / methods # description: http utility # version: 1.4 # # Utility code for HTTP requests, used by all channel plugins. # # Provides a http "GET" method, but also does POST and AJAX- # simulating requests too. Hooks into mains gtk.statusbar(). # And can normalize URLs to always carry a trailing slash # after the domain name. from config import conf, __print__, dbg import requests #-- hooks to progress meter and status bar in main window feedback = None # Sets either text or percentage of main windows' status bar. # |
︙ | ︙ | |||
33 34 35 36 37 38 39 | # send to main win if feedback: try: [feedback(d) for d in args] except: pass | < < | < | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | # send to main win if feedback: try: [feedback(d) for d in args] except: pass # prepare default query object session = requests.Session() # default HTTP headers for requests session.headers.update({ "User-Agent": "streamtuner2/2.1 (X11; Linux amd64; rv:33.0) like WinAmp/2.1", "Accept": "*/*", "Accept-Language": "en-US,en,de,es,fr,it,*;q=0.1", "Accept-Encoding": "gzip, deflate", "Accept-Charset": "UTF-8, ISO-8859-1;q=0.5, *;q=0.1", }) #-- Retrieve data via HTTP # # Well, it says "get", but it actually does POST and AJAXish GET requests too. # def get(url, params={}, referer="", post=0, ajax=0, binary=0, feedback=None, content=True): |
︙ | ︙ | |||
88 89 90 91 92 93 94 | return r elif binary: return r.content else: return r.text | < < < < < | 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | return r elif binary: return r.content else: return r.text #-- Append missing trailing slash to URLs def fix_url(url): if url is None: url = "" if len(url): # remove whitespace url = url.strip() # add scheme if (url.find("://") < 0): url = "http://" + url # add mandatory path if (url.find("/", 10) < 0): url = url + "/" return url |
Modified channels/__init__.py from [2254b1cf48] to [6af40f336b].
|
| < | 1 2 3 4 5 6 7 | # encoding: UTF-8 # api: streamtuner2 # type: base # category: ui # title: Channel plugins # description: Base implementation for channels and feature plugins # version: 1.1 |
︙ | ︙ | |||
500 501 502 503 504 505 506 | # channel plugin without glade-pre-defined notebook tab # class ChannelPlugin(GenericChannel): module = "abstract" def gui(self, parent): | > | > > | 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 | # channel plugin without glade-pre-defined notebook tab # class ChannelPlugin(GenericChannel): module = "abstract" def gui(self, parent): if not parent: return module = self.__class__.__name__ # two panes vbox = gtk.HPaned() vbox.show() # category treeview sw1 = gtk.ScrolledWindow() sw1.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) |
︙ | ︙ | |||
550 551 552 553 554 555 556 | # pack it into an event container to catch double-clicks ev_label = gtk.EventBox() ev_label.add(label) ev_label.connect('event', parent.on_homepage_channel_clicked) plain_label = gtk.Label(self.module) | < < < < < < < < < < | 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 | # pack it into an event container to catch double-clicks ev_label = gtk.EventBox() ev_label.add(label) ev_label.connect('event', parent.on_homepage_channel_clicked) plain_label = gtk.Label(self.module) # to widgets self.gtk_cat = tv1 parent.widgets[module + "_cat"] = tv1 self.gtk_list = tv2 parent.widgets[module + "_list"] = tv2 ev_label.show_all() vbox.show_all() parent.widgets["v_" + module] = vbox parent.widgets["c_" + module] = ev_label tv2.connect('button-press-event', parent.station_context_menu) # try to initialize superclass now, before adding to channel tabs GenericChannel.gui(self, parent) # add notebook tab tab = parent.notebook_channels.insert_page_menu(vbox, ev_label, plain_label, -1) # double-click catch # add module to list #parent.channels[module] = None #parent.channel_names.append(module) """ -> already taken care of in main.load_plugins() """ |
Modified channels/bookmarks.py from [de1d64d722] to [1582092482].
︙ | ︙ | |||
11 12 13 14 15 16 17 | # Favourite lists. # # This module lists static content from ~/.config/streamtuner2/bookmarks.json. # Any bookmarked station will appear with a star โ icon in other channels. # # Some feature extensions inject custom subcategories here. For example the # "search" feature adds its own result list here, as does the "timer" plugin. | | < | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Favourite lists. # # This module lists static content from ~/.config/streamtuner2/bookmarks.json. # Any bookmarked station will appear with a star โ icon in other channels. # # Some feature extensions inject custom subcategories here. For example the # "search" feature adds its own result list here, as does the "timer" plugin. from config import * from uikit import uikit from channels import * |
︙ | ︙ | |||
203 204 205 206 207 208 209 210 | # more text similarity heuristics might go here else: pass # if there were changes if save: self.save() | < < < | 202 203 204 205 206 207 208 209 | # more text similarity heuristics might go here else: pass # if there were changes if save: self.save() |
Modified channels/file.py from [1ae0a2679f] to [1ed6e9a8dc].
|
| < | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # api: streamtuner2 # title: File browser # description: Displays mp3/oggs or m3u/pls files from local media file directories. # type: channel # category: local # version: 0.1 # priority: optional # depends: mutagen # config: # { name: file_browser_dir, type: text, value: "~/Music, /media/music", description: "List of directories to scan for audio files." }, # { name: file_browser_ext, type: text, value: "mp3,ogg, m3u,pls,xspf, avi,flv,mpg,mp4", description: "File type/extension filter." }, # # Local file browser. Presents files from configured directories. # modules import os import re |
︙ | ︙ | |||
119 120 121 122 123 124 125 126 127 128 129 130 131 132 | # read dirs def scan_dirs(self): self.categories = [] # add main directory for main in self.dir: if os.path.exists(main): self.categories.append(main) # prepare subdirectories list sub = [] self.categories.append(sub) | > > | 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | # read dirs def scan_dirs(self): self.categories = [] # add main directory for main in self.dir: main = re.sub("^~", os.environ.get("HOME")) main = re.sub("[$]([A-Z_]+)", lambda m: os.environ.get(m.group(1)), main) if os.path.exists(main): self.categories.append(main) # prepare subdirectories list sub = [] self.categories.append(sub) |
︙ | ︙ |
Modified channels/history.py from [8bb9924983] to [7a53bd0585].
1 2 3 4 5 6 7 8 9 10 11 | # # api: streamtuner2 # title: History # description: List recently played stations under favourites > history. # version: 1.0 # type: group # category: ui # config: # { name: history, type: int, value: 20, description: Number of last played streams to keep in history list., category: limit } # priority: optional # | < | | < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # # api: streamtuner2 # title: History # description: List recently played stations under favourites > history. # version: 1.0 # type: group # category: ui # config: # { name: history, type: int, value: 20, description: Number of last played streams to keep in history list., category: limit } # priority: optional # # Lists recently played streams in a new [history] tab in the # bookmarks channel. from config import * from channels import * class history: # plugin info module = "history" title = "History" |
︙ | ︙ |
Modified channels/icast.py from [0fb036d9f5] to [9166297ac1].
︙ | ︙ | |||
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # NHrTK3TMRYTCIlmdM3bNKmy8KGGWgrs3UYRXSHp0TISKS4WaPXq4OXrENHrNO3zRPnitXpZ/aqJrRnd5Y5VPWYVXNGeTNnO1M2OiLmy+PYPdSo3eUZHaU5DLg7cxtOwNntIaYpVrMGittLvEKV+lQofd # UZXoXp7rY6HfVoutsOUMQnOHdIurM2q2Y6TvbarqZJvFYpBlp9sSs+gMboag3t/dfZCqPWysSoLNYJvgYZSxfq5NNmF6MlmCcoab19nXqKyyZoSwTnawN2OfRGqXXXqanKKjzMzMt7e3o6SjsLKvtVfy # AwAAAAFiS0dEBxZhiOsAAAAJcEhZcwAAAEgAAABIAEbJaz4AAADxSURBVBjTY2AAAUYmIGBkZoACRhZWNnZ2Dk4uqAgjNw8vH7+AoJCwCCOIzywqJi4hKSUtIysnrwBSo6ikrKKqpq6hqaWto6QIVKCr # p69uYGBoZGxiYmrGyczAaG5haWVtbW1ja2fv4GjOyMDo5Ozi6ubu4enl7ePr5w8U8A8IDAoOCQ0Lj4iMigYJmDtHRcbExsUnJCYlR6YwMjCzpqalZ2SGZ2Vn5+TmsTIzMOcXFBYVl5TmZGeXlXPkgxxa # UZleVV1TW1efyNYAdmpjU3NLq1Zbe0dnVzfEM0w9vX3N/RMmTmqEeZd58pSpU6dNBnsWAEP5Nco3FJZfAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE0LTA2LTAxVDAxOjI4OjA3KzAyOjAw7O+A+AAAACV0 # RVh0ZGF0ZTptb2RpZnkAMjAxNC0wNi0wMVQwMToyODowNyswMjowMJ2yOEQAAAAASUVORK5CYII= # documentation: http://api.icast.io/ # # A modern alternative to ShoutCast/ICEcast. # Streams are user-contributed, but often lack # meta data (homepage) and there's no ordering # by listeneres/popularity. # # OTOH it's every easy to interface with. Though # the repeated API queries due to only 10 entries # per query results make fetching slow. | > | < < | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | # NHrTK3TMRYTCIlmdM3bNKmy8KGGWgrs3UYRXSHp0TISKS4WaPXq4OXrENHrNO3zRPnitXpZ/aqJrRnd5Y5VPWYVXNGeTNnO1M2OiLmy+PYPdSo3eUZHaU5DLg7cxtOwNntIaYpVrMGittLvEKV+lQofd # UZXoXp7rY6HfVoutsOUMQnOHdIurM2q2Y6TvbarqZJvFYpBlp9sSs+gMboag3t/dfZCqPWysSoLNYJvgYZSxfq5NNmF6MlmCcoab19nXqKyyZoSwTnawN2OfRGqXXXqanKKjzMzMt7e3o6SjsLKvtVfy # AwAAAAFiS0dEBxZhiOsAAAAJcEhZcwAAAEgAAABIAEbJaz4AAADxSURBVBjTY2AAAUYmIGBkZoACRhZWNnZ2Dk4uqAgjNw8vH7+AoJCwCCOIzywqJi4hKSUtIysnrwBSo6ikrKKqpq6hqaWto6QIVKCr # p69uYGBoZGxiYmrGyczAaG5haWVtbW1ja2fv4GjOyMDo5Ozi6ubu4enl7ePr5w8U8A8IDAoOCQ0Lj4iMigYJmDtHRcbExsUnJCYlR6YwMjCzpqalZ2SGZ2Vn5+TmsTIzMOcXFBYVl5TmZGeXlXPkgxxa # UZleVV1TW1efyNYAdmpjU3NLq1Zbe0dnVzfEM0w9vX3N/RMmTmqEeZd58pSpU6dNBnsWAEP5Nco3FJZfAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE0LTA2LTAxVDAxOjI4OjA3KzAyOjAw7O+A+AAAACV0 # RVh0ZGF0ZTptb2RpZnkAMjAxNC0wNi0wMVQwMToyODowNyswMjowMJ2yOEQAAAAASUVORK5CYII= # documentation: http://api.icast.io/ # # # A modern alternative to ShoutCast/ICEcast. # Streams are user-contributed, but often lack # meta data (homepage) and there's no ordering # by listeneres/popularity. # # OTOH it's every easy to interface with. Though # the repeated API queries due to only 10 entries # per query results make fetching slow. import re import json from config import conf, dbg, __print__ from channels import * import ahttp as http |
︙ | ︙ |
Modified channels/internet_radio.py from [e1356b6b1d] to [703c455b25].
|
| < | < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # api: streamtuner2 # title: Internet-Radio # description: Broad list of webradios from all genres. # type: channel # category: radio # version: 1.2 # url: http://www.internet-radio.org.uk/ # config: # { name: internetradio_max_pages, type: int, value: 5, category: limit, description: How many pages to fetch and read. } # priority: standard # # Internet-Radio.co.uk/.com is one of the largest stream directories. # Available music genre classifications are mirrored verbatim and flatly. # # The new version of this plugin alternates between PyQuery and Regex # station extraction. Both overlook some paid or incomplete entries. # HTTP retrieval happens in one batch, determined by the number of pages # setting, rather than the global max_streams option. # from channels import * import re from config import conf, __print__, dbg import ahttp as http from pq import pq |
︙ | ︙ |
Modified channels/itunes.py from [c564d09eeb] to [48eaa07b1c].
1 2 3 4 5 6 7 8 9 10 11 12 | # encoding: UTF-8 # api: streamtuner2 # title: iTunes Radio # description: iTunes unsorted station list via RoliSoft Radio Playlist caching webservice. # version: 0.1 # type: channel # category: radio # url: http://www.itunes.com? # priority: optional # config: - # documentation: http://lab.rolisoft.net/playlists.html # | > | > < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | # encoding: UTF-8 # api: streamtuner2 # title: iTunes Radio # description: iTunes unsorted station list via RoliSoft Radio Playlist caching webservice. # version: 0.1 # type: channel # category: radio # url: http://www.itunes.com? # priority: optional # config: - # documentation: http://lab.rolisoft.net/playlists.html # # # API provides pre-parsed radio station playlists for various services # # โ Shoutcast # โ Xiph/ICEcast # โ Tunein # โ iTunes # โ FilterMusic # โ SomaFM # โ AccuRadio # โ BBC # # In this module only iTunes will be queried for now. # import re from config import conf, dbg, __print__ from channels import * import ahttp as http |
︙ | ︙ |
Modified channels/jamendo.py from [3aba6ea22f] to [809614f8f4].
︙ | ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | # doesn't seem overly sensible. # # Tracks are queried by genre, where currently there's just a small built-in # tag list in ST2 # # Per default Ogg Vorbis is used as streaming format. Playlists and albums # return as XSPF playlists. # # # The v3.0 streaming URLs don't seem to work. Therefore some /get2 URLs will # be used. # # [x] http://api.jamendo.com/v3.0/playlists/file?client_id=&id= # [+] http://storage-new.newjamendo.com/?trackid=792843&format=ogg2&u=0 # [+] http://api.jamendo.com/get2/stream/track/xspf/?playlist_id=171574&n=all&order=random # [+] http://api.jamendo.com/get2/stream/track/xspf/?album_id=%s&streamencoding=ogg2&n=all # # Seem to resolve to OGG Vorbis each. # | > > > > > > > > > > < < < < < < < < < < < < < < < | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | # doesn't seem overly sensible. # # Tracks are queried by genre, where currently there's just a small built-in # tag list in ST2 # # Per default Ogg Vorbis is used as streaming format. Playlists and albums # return as XSPF playlists. import re import ahttp as http from config import conf, __print__, dbg from channels import * import json # jamendo CC music sharing site # # # The v3.0 streaming URLs don't seem to work. Therefore some /get2 URLs will # be used. # # [x] http://api.jamendo.com/v3.0/playlists/file?client_id=&id= # [+] http://storage-new.newjamendo.com/?trackid=792843&format=ogg2&u=0 # [+] http://api.jamendo.com/get2/stream/track/xspf/?playlist_id=171574&n=all&order=random # [+] http://api.jamendo.com/get2/stream/track/xspf/?album_id=%s&streamencoding=ogg2&n=all # # Seem to resolve to OGG Vorbis each. # class jamendo (ChannelPlugin): # description title = "Jamendo" module = "jamendo" homepage = "http://www.jamendo.com/" version = 0.3 |
︙ | ︙ |
Modified channels/live365.py from [f9cb99d01d] to [f028ea638f].
1 2 3 4 5 6 7 8 9 10 11 | # api: streamtunter2 # title: Live365 # description: Around 5000 categorized internet radio streams, some paid ad-free ones. # version: 0.3 # type: channel # category: radio # url: http://www.live365.com/ # config: - # priority: optional # | | | | < < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # api: streamtunter2 # title: Live365 # description: Around 5000 categorized internet radio streams, some paid ad-free ones. # version: 0.3 # type: channel # category: radio # url: http://www.live365.com/ # config: - # priority: optional # # Live365 lists around 5000 radio stations. Some are paid # entries and require a logon. This plugins tries to filter # thoise out. # streamtuner2 modules from config import conf from uikit import uikit import ahttp as http from channels import * |
︙ | ︙ | |||
37 38 39 40 41 42 43 44 45 46 47 48 49 50 | import urllib from itertools import groupby from time import time from xml.dom.minidom import parseString # channel live365 class live365(ChannelPlugin): # desc module = "live365" title = "Live365" homepage = "http://www.live365.com/" base_url = "http://www.live365.com/" | > > > > > > > > > | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | import urllib from itertools import groupby from time import time from xml.dom.minidom import parseString # channel live365 # # We're currently extracting from the JavaScript; # # stn.set("param", "value"); # # And using a HTML5 player direct URL now: # # /cgi-bin/play.pls?stationid=%s&direct=1&file=%s.pls # class live365(ChannelPlugin): # desc module = "live365" title = "Live365" homepage = "http://www.live365.com/" base_url = "http://www.live365.com/" |
︙ | ︙ |
Modified channels/modarchive.py from [d62c0ac39b] to [4800565f88].
1 2 3 4 5 6 7 8 9 10 11 | # api: streamtuner2 # title: MODarchive # description: Collection of module / tracker audio files (MOD, S3M, XM, etc.) # type: channel # version: 0.2 # url: http://www.modarchive.org/ # priority: extra # config: - # category: collection # | < | < > | < < < > | > > > | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | # api: streamtuner2 # title: MODarchive # description: Collection of module / tracker audio files (MOD, S3M, XM, etc.) # type: channel # version: 0.2 # url: http://www.modarchive.org/ # priority: extra # config: - # category: collection # # A genre browser for tracker music files from the MOD Archive. # # MOD files dodn't work with all audio players. And with the default # download method, it'll receive a .zip archive with embeded .mod file. # # Configuring VLC for */* is the best option. See the help on how to # setup wget/curl to download them. import re import ahttp as http from config import conf from channels import * from config import __print__, dbg # The MOD Archive # # Modarchive actually provides an API # http://modarchive.org/index.php?xml-api # (If only it wasn't XML based..) # class modarchive (ChannelPlugin): # description title = "modarchive" module = "modarchive" homepage = "http://www.modarchive.org/" base = "http://modarchive.org/" |
︙ | ︙ |
Modified channels/myoggradio.py from [ac171b964b] to [23fa6f6672].
|
| | | 1 2 3 4 5 6 7 8 | # api: streamtuner2 # title: MyOggRadio # description: Open source internet radio directory. # type: channel # category: radio # version: 0.6 # url: http://www.myoggradio.org/ |
︙ | ︙ | |||
16 17 18 19 20 21 22 | # well with streamtuner2, there's now a project partnership. Shared streams can easily # be downloaded in this channel plugin. And streamtuner2 users can easily share their # favourite stations into the MyOggRadio directory. # # Beforehand an account needs to be configured in the settings. (Registration # on myoggradio doesn't require an email address or personal information.) # | < | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # well with streamtuner2, there's now a project partnership. Shared streams can easily # be downloaded in this channel plugin. And streamtuner2 users can easily share their # favourite stations into the MyOggRadio directory. # # Beforehand an account needs to be configured in the settings. (Registration # on myoggradio doesn't require an email address or personal information.) # from channels import * from config import conf from action import action from uikit import uikit import ahttp as http |
︙ | ︙ | |||
177 178 179 180 181 182 183 | if len(conf.myoggradio_login) and conf.myoggradio_login != "user:password": return conf.myoggradio_login.split(":") else: lap = conf.netrc(["myoggradio", "myoggradio.org", "www.myoggradio.org"]) if lap: return [lap[0] or lap[1], lap[2]] pass | < | 176 177 178 179 180 181 182 183 184 185 | if len(conf.myoggradio_login) and conf.myoggradio_login != "user:password": return conf.myoggradio_login.split(":") else: lap = conf.netrc(["myoggradio", "myoggradio.org", "www.myoggradio.org"]) if lap: return [lap[0] or lap[1], lap[2]] pass |
Modified channels/search.py from [5610a2549a] to [2947558d4e].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # api: streamtuner2 # title: Search feature # description: Provides the quick search box, and server/cache search window. # version: 0.9 # type: feature # category: ui # config: - # priority: core # # Configuration dialog for audio applications, # general settings, and plugin activation and # associated options. # from uikit import * import channels from config import * from copy import copy | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # api: streamtuner2 # title: Search feature # description: Provides the quick search box, and server/cache search window. # version: 0.9 # type: feature # category: ui # config: - # priority: core # # Configuration dialog for audio applications, # general settings, and plugin activation and # associated options. # # Some plugins hook into the saving method. Most # require a restart of streamtuner2 for changes # to take effect. from uikit import * import channels from config import * from copy import copy |
︙ | ︙ |
Modified channels/shoutcast.py from [d4f5d3a425] to [41fdc8e85d].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 | # url: http://www.shoutcast.com/ # config: - # priority: default # depends: pq, re, http # # Shoutcast is a server software for audio streaming. It automatically spools # station information on shoutcast.com # It has been aquired by Radionomy in 2014, since then significant changes | > | | | > > > > > > > > | > > > > > < < < < < < < < < < < < < < < | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | # url: http://www.shoutcast.com/ # config: - # priority: default # depends: pq, re, http # # Shoutcast is a server software for audio streaming. It automatically spools # station information on shoutcast.com # # It has been aquired by Radionomy in 2014, since then significant changes # took place. The former yellow pages API got deprecated. import ahttp as http from json import loads as json_decode import re from config import conf, __print__, dbg from pq import pq from channels import * # works everywhere but in this plugin(???!) import channels from compat2and3 import urllib # SHOUTcast data module # # Former API doc: http://wiki.winamp.com/wiki/SHOUTcast_Radio_Directory_API # But neither their Wiki nor Bulletin Board provide concrete information on # the eligibility of open source desktop apps for an authhash. # # Therefore we'll be retrieving stuff from the homepage still. The new # interface conveniently uses JSON already, so let's use that: # # POST http://www.shoutcast.com/Home/BrowseByGenre {genrename: Pop} # # We do need a catmap now too, but that's easy to aquire and will be kept # within the cache dirs. # class shoutcast(channels.ChannelPlugin): # desc module = "shoutcast" title = "SHOUTcast" base_url = "http://shoutcast.com/" listformat = "audio/x-scpls" |
︙ | ︙ |
Modified channels/tunein.py from [35eb51b3bf] to [8f4dc51ffa].
︙ | ︙ | |||
13 14 15 16 17 18 19 | # # RadioTime API uses OPML for station/podcast entries. # # Only radio listings are queried for now. But there are # heaps more talk and local show entries, etc. (Would require # more deeply nested category tree.) # | < | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # # RadioTime API uses OPML for station/podcast entries. # # Only radio listings are queried for now. But there are # heaps more talk and local show entries, etc. (Would require # more deeply nested category tree.) # import re import json from config import conf, dbg, __print__ from channels import * import ahttp as http |
︙ | ︙ |
Modified channels/xiph.py from [5e3d628269] to [08e11d5433].
1 2 3 4 5 6 7 8 9 10 11 12 | # encoding: UTF-8 # api: streamtuner2 # title: Xiph.org # description: ICEcast radio directory. Now utilizes a cached JSON API. # type: channel # url: http://dir.xiph.org/ # version: 0.3 # category: radio # config: # { name: xiph_min_bitrate, value: 64, type: int, description: "minimum bitrate, filter anything below", category: filter } # priority: standard # | | > | > > > > > > > > > > > > > > > > > > > > > | | | < < < < < < < < < < < < < < < < < < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | # encoding: UTF-8 # api: streamtuner2 # title: Xiph.org # description: ICEcast radio directory. Now utilizes a cached JSON API. # type: channel # url: http://dir.xiph.org/ # version: 0.3 # category: radio # config: # { name: xiph_min_bitrate, value: 64, type: int, description: "minimum bitrate, filter anything below", category: filter } # priority: standard # # Xiph.org maintains the Ogg streaming standard and Vorbis # audio compression format, amongst others. The ICEcast # server is an alternative to SHOUTcast. # # It also provides a directory listing of known internet # radio stations, only a handful of them using Ogg though. # # The category list is hardwired in this plugin. # from config import * from uikit import uikit import ahttp as http from channels import * #from xml.sax.saxutils import unescape as entity_decode, escape as xmlentities #import xml.dom.minidom import json import re # Xiph via I-O # # # Xiph meanwhile provides a JSOL dump, which is faster to download and process. # So we'll use that over the older yp.xml. (Sadly it also doesn't output # homepage URLs, listeners, etc.) # # Xiphs JSON is a horrible mysqldump concatenation, not parseable. Thus it's # refurbished on //api.include-once.org/xiph/cache.php for consumption. Which # also provides compressed HTTP transfers and category slicing. # # Xiph won't be updating the directory for another while. The original feature # request is now further delayed as summer of code project: # ยท https://trac.xiph.org/ticket/1958 # ยท https://wiki.xiph.org/Summer_of_Code_2015#Stream_directory_API # class xiph (ChannelPlugin): # desc module = "xiph" title = "Xiph.org" homepage = "http://dir.xiph.org/" #xml_url = "http://dir.xiph.org/yp.xml" json_url = "http://api.include-once.org/xiph/cache.php" listformat = "url/http" has_search = True |
︙ | ︙ |
Modified channels/youtube.py from [cc1c8191ad] to [d1ebc01baa].
︙ | ︙ | |||
41 42 43 44 45 46 47 | # a few of the details. # While .wrap3() unpacks the various variations of where the video IDs # get hidden in the result sets. # Google uses some quote/billing algorithm for all queries. It seems # sufficient for Streamtuner2 for now, as the fields= JSON filter strips # a lot of uneeded data. (Clever idea, but probably incurs more processing # effort on Googles servers than it actually saves bandwidth, but hey..) | < | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | # a few of the details. # While .wrap3() unpacks the various variations of where the video IDs # get hidden in the result sets. # Google uses some quote/billing algorithm for all queries. It seems # sufficient for Streamtuner2 for now, as the fields= JSON filter strips # a lot of uneeded data. (Clever idea, but probably incurs more processing # effort on Googles servers than it actually saves bandwidth, but hey..) # # EXAMPLES # # api("videos", chart="mostPopular") # api("search", chart="mostPopular", videoCategoryId=10, order="date", type="video") # api("channels", categoryId=10) # api("search", topicId="/m/064t9", type="video") |
︙ | ︙ |