1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# api: streamtuner2
# title: MyOggRadio
# description: Open source internet radio directory.
# type: channel
# category: radio
# version: 0.6
# url: http://www.myoggradio.org/
# depends: json, StringIO
# config:
# { name: myoggradio_login, type: text, value: "user:password", description: "Account for storing personal favourites." }
# { name: myoggradio_morph, type: boolean, value: 0, description: "Convert pls/m3u into direct shoutcast url." }
# priority: standard
# png:
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# api: streamtuner2
# title: MyOggRadio
# description: Open source internet radio directory.
# type: channel
# category: radio
# version: 0.7
# url: http://www.myoggradio.org/
# depends: json, StringIO
# config:
# { name: myoggradio_login, type: text, value: "user:password", description: "Account for storing personal favourites." }
# { name: myoggradio_morph, type: boolean, value: 0, description: "Convert pls/m3u into direct shoutcast url." }
# priority: standard
# png:
|
︙ | | | ︙ | |
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#
# 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
import re
import json
from compat2and3 import StringIO
import copy
# open source radio sharing stie
class myoggradio(ChannelPlugin):
# settings
title ="MOR"
|
|
|
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#
# 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 *
from action import action
from uikit import uikit
import ahttp as http
import re
import json
from compat2and3 import StringIO
import copy
from uikit import gtk
# open source radio sharing stie
class myoggradio(ChannelPlugin):
# settings
title ="MOR"
|
︙ | | | ︙ | |
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# prepare GUI
def __init__(self, parent):
ChannelPlugin.__init__(self, parent)
if parent:
uikit.add_menu([parent.extensions, parent.extensions_context], "Share in MyOggRadio", self.share)
# this is simple, there are no categories
def update_categories(self):
pass
|
|
>
|
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# prepare GUI
def __init__(self, parent):
ChannelPlugin.__init__(self, parent)
if parent:
#uikit.add_menu([parent.extensions, parent.extensions_context], "Share in MyOggRadio", self.share)
uikit.add_menu([parent.streammenu, parent.streamactions], "Share in MyOggRadio", self.share, insert=4)
# this is simple, there are no categories
def update_categories(self):
pass
|
︙ | | | ︙ | |
180
181
182
183
184
185
186
187
188
189
190
|
def user_pw(self):
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
|
>
>
|
181
182
183
184
185
186
187
188
189
190
191
192
193
|
def user_pw(self):
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]]
else:
self.parent.status("No login data for MyOggRadio configured. See F12 for setup, or F1 for help.");
pass
|