105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
if row.get("url"):
print(row["url"])
# run player
def play(self, *args):
row = self.stream(*args)
if row.get("url"):
#action.action.play(row["url"], audioformat=row.get("format","audio/mp3"))
self.plugins[self.current_channel].play(row)
# return cache data 1:1
def dump(self, channel):
c = self.channel(channel)
c.cache()
return c.streams
|
|
|
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
if row.get("url"):
print(row["url"])
# run player
def play(self, *args):
row = self.stream(*args)
if row.get("url"):
#action.action.play(row["url"], audioformat=row.get("format","audio/mpeg"))
self.plugins[self.current_channel].play(row)
# return cache data 1:1
def dump(self, channel):
c = self.channel(channel)
c.cache()
return c.streams
|