Internet radio browser GUI for music/video streams from various directory services.

⌈⌋ ⎇ branch:  streamtuner2


Changes To write a plugin

Changes to "write a plugin" between 2015-04-14 10:08:45 and 2015-04-14 10:09:30

1
2
3
4
5

6
7
8
9

10
11
12
13
14
15
16
1
2
3
4
5
6
7
8
9

10
11
12
13
14
15
16
17





+



-
+







Wrting a new plugin is often trivial.
Just create a new `channels/name.py` following this structure:

    # title: MyPlugin
    # description: my radio list
    # url: http://www.mymusicstation.com/
    # version: 0.1
    # type: channel
    # category: radio
    # url: http://www.mymusicstation.com/
    # priority: optional
    # config: -

    from config import *
    from channels import *

    class myplugin (ChannelPlugin):
        has_search = False