forked from dersphere/plugin.video.nasa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.py
138 lines (119 loc) · 3.84 KB
/
addon.py
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2012 Tristan Fischer ([email protected])
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from xbmcswift2 import Plugin
STRINGS = {
'page': 30001,
'streams': 30100,
'videos': 30101,
'vodcasts': 30103,
'search': 30200,
'title': 30201
}
STATIC_STREAMS = (
{
'title': 'Nasa TV HD',
'logo': 'public.jpg',
'stream_url': ('http://public.infozen.cshls.lldns.net/infozen/public/'
'public/public_1000.m3u8'),
}, {
'title': 'ISS Live Stream',
'logo': 'iss.jpg',
'stream_url': ('http://iphone-streaming.ustream.tv/ustreamVideo/'
'9408562/streams/live/playlist.m3u8'),
}, {
'title': 'Educational Channel HD',
'logo': 'edu.jpg',
'stream_url': ('http://edu.infozen.cshls.lldns.net/infozen/edu/'
'edu/edu_1000.m3u8'),
}, {
'title': 'Media Channel HD',
'logo': 'media.jpg',
'stream_url': ('http://media.infozen.cshls.lldns.net/infozen/media/'
'media/media_1000.m3u8'),
},
)
YOUTUBE_CHANNELS = (
{
'name': 'NASA Main',
'logo': 'nasa.jpg',
'channel_id': 'UCLA_DiR1FfKNvjuUpBHmylQ',
'user': 'NASAtelevision',
}, {
'name': 'NASA Goddard',
'logo': 'goddard.jpg',
'channel_id': 'UCAY-SMFNfynqz1bdoaV8BeQ',
'user': 'NASAexplorer',
}, {
'name': 'NASA Jet Propulsion Laboratory',
'logo': 'jpl.jpg',
'channel_id': 'UCryGec9PdUCLjpJW2mgCuLw',
'user': 'JPLnews',
}, {
'name': 'NASA Kennedy Space Center',
'logo': 'nasa.jpg',
'channel_id': 'UCjJtr2fFcUp6yljzJOzpHUg',
'user': 'NASAKennedy',
}, {
'name': 'Hubble Space Telescope',
'logo': 'hubble.jpg',
'channel_id': 'UCqvjEkH_41m4DYaoNQwk4Bw',
'user': 'HubbleSiteChannel',
},
)
YOUTUBE_URL ='plugin://plugin.video.youtube/channel/%s/?page=1'
plugin = Plugin()
@plugin.route('/')
def show_root_menu():
items = [
{'label': _('streams'),
'path': plugin.url_for('show_streams')},
{'label': _('videos'),
'path': plugin.url_for('show_channels')},
]
return plugin.finish(items)
@plugin.route('/streams/')
def show_streams():
items = [{
'label': stream['title'],
'thumbnail': get_logo(stream['logo']),
'path': stream['stream_url'],
'is_playable': True,
} for stream in STATIC_STREAMS]
return plugin.finish(items)
@plugin.route('/channels/')
def show_channels():
items = [{
'label': channel['name'],
'thumbnail': get_logo(channel['logo']),
'path': YOUTUBE_URL % channel['channel_id'],
} for channel in YOUTUBE_CHANNELS]
return plugin.finish(items)
def get_logo(logo):
addon_id = plugin._addon.getAddonInfo('id')
return 'special://home/addons/%s/resources/media/%s' % (addon_id, logo)
def _(string_id):
if string_id in STRINGS:
return plugin.get_string(STRINGS[string_id])
else:
plugin.log.warning('String is missing: %s' % string_id)
return string_id
def log(text):
plugin.log.info(text)
if __name__ == '__main__':
plugin.run()