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

⌈⌋ ⎇ branch:  streamtuner2


Check-in [0e8c56d915]

Overview
Comment:Set Frequence3 as new default bookmark (curb the finder song)
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 0e8c56d91516d6ddd550d20657c2f426af16a4a9
User & Date: mario on 2016-12-17 11:22:27
Other Links: manifest | tags
Context
2016-12-17
11:28
Remove obsolete windows theme plugin. check-in: 5c5b1b29cf user: mario tags: trunk
11:22
Set Frequence3 as new default bookmark (curb the finder song) check-in: 0e8c56d915 user: mario tags: trunk
11:14
new plugin: script stations, for single-station extractiong/user scripts check-in: 8a77525fb0 user: mario tags: trunk
Changes

Modified channels/bookmarks.py from [e1104d7956] to [557d39309e].

35
36
37
38
39
40
41



42




43

44
45
46
47
48
49
50
# It's accessible as `parent.bookmarks` in the ST2 window and elsewhere.
#
class bookmarks(GenericChannel):

    # content
    listformat = "any"
    categories = ["favourite", ]  # timer, links, search, and links show up as needed



    finder_song = { "genre": "Youtube ", "format": "video/youtube", "playing": "current_", "title": "The Finder song", "url": "http://youtube.com/v/omyZy4H8y9M", "homepage": "http://youtu.be/omyZy4H8y9M" }




    streams = {"favourite":[finder_song], "search":[], "scripts":[], "timer":[], "history":[], }

    default = "favourite"
    fixed_size = [32,24]


    # cache list, to determine if a PLS url is bookmarked
    urls = []








>
>
>
|
>
>
>
>
|
>







35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# It's accessible as `parent.bookmarks` in the ST2 window and elsewhere.
#
class bookmarks(GenericChannel):

    # content
    listformat = "any"
    categories = ["favourite", ]  # timer, links, search, and links show up as needed
    streams = {
        "favourite": [
          { "genre": "Top 40", "title": "Frequence3", "playing": "The French hit web radio from Paris!", "format": "audio/mpeg",
            "url": "http://ice.stream.frequence3.net/frequence3-256.mp3", "homepage": "http://www.frequence3.fr/" }
        ],
        "search": [],
        "scripts": [],
        "timer": [],
        "history": []
    }
    default = "favourite"
    fixed_size = [32,24]


    # cache list, to determine if a PLS url is bookmarked
    urls = []