TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151) +---- Thread: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) (/showthread.php?tid=282157) Pages:
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - ködi-zömbie - 2016-12-17 (2016-12-16, 13:01)primaeval Wrote:Hello Mister,(2016-12-16, 12:49)ködi-zömbie Wrote:(2016-12-16, 10:17)primaeval Wrote: The last version that might have reset the channels was 0.0.238, I think. I did yesterday on my Win10 Kodi an update and after updating to latest version all my channel sources and order is still there . So I copied all to Android without any problems now. I dont know how and why but my db is still okay. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - Scott00007 - 2016-12-17 @primaeval....Thanks for taking my questions/suggestions under consideration. I didn't realize that the images were supposed to be handled by the xmltv file. I do not have any control over the xmltv file I use but I will see if there is anything I can do to get more images. I totally understand that you don't want things to get banned. I think that maybe images are as good as they can be at the moment. Anyway, the addon is going in a great direction so as always thank you for your hard work. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - FXB78 - 2016-12-17 (2016-12-16, 15:26)primaeval Wrote: The variable startDate is a datetime version of start which is used for the time string. You can use that instead.Thanks, I managed to format it to my liking by using strftime I've noticed since the last update the ESC key doesn't seem to exit the guide when a stream is playing, I'm guessing this has been missed with the new keymapping? RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-12-17 (2016-12-17, 21:33)Scott00007 Wrote: @primaeval....Thanks for taking my questions/suggestions under consideration. I didn't realize that the images were supposed to be handled by the xmltv file. I do not have any control over the xmltv file I use but I will see if there is anything I can do to get more images. Some people's xmltv files are full of images from the same sites they scrape the program data from. That is the best solution. It takes a bit of setting up to do it properly with Webgrab+Plus. Lots of cryptic configuration files. I made a start on doing a full background image update but I don't think I will release it. One of the typical xmltv files I tested with had 35061 missing images in it. I think that is probably taking the piss to search all those individually at omdb. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-12-17 (2016-12-17, 21:44)FXB78 Wrote:(2016-12-16, 15:26)primaeval Wrote: The variable startDate is a datetime version of start which is used for the time string. You can use that instead.Thanks, I managed to format it to my liking by using strftime I've noticed since the last update the ESC key doesn't seem to exit the guide when a stream is playing, I'm guessing this has been missed with the new keymapping? I took out a lot of the ESC key code because it seems to work ok on my devices without needing it. Maybe it is just the default on Windows and Android. Where doesn't it work for you? All the dialogs should close with the CLOSE command now which I mapped up to ["ACTION_NAV_BACK", "ACTION_PARENT_DIR", "ACTION_PREVIOUS_MENU"] by default in the new Action Editor. The plan was to use the BACK button to close everything which is mapped up to BACKSPACE in Windows by default. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - enerdude - 2016-12-17 (2016-12-03, 16:05)enerdude Wrote: when specifying my own xmltv url I get an error in the log about the content-length header not being found so I modified Thanks for fixing this in filefetcher.py. I see you added a Code: if "Content-Length" in r.headers: Thanks for this great EPG addon! I am not sure how to do the "fork" on github you talked about last time so I edited the .py manually with my own limited knowledge lol I have another request if at all possible: When using a SSL (https) url as my XMLTV url (in my case a dropbox url) it seems the requests library freaks out due to a certificate error. if I modify Code: r = requests.get(self.fileUrl,auth=(user, password), stream=True) it works fine Seeing that filefetcher sometimes retrieves urls with authentication one would not want it to disable SSL verification on all urls I guess, so would it be possible to add a setting in the source settings menu where one specifies the XMLTV url to disable SSL verification. In order words the filefetcher.py would contain an if statement based on that? Or I guess one can just turn of verification for all retrievals of XMLTV urls seeing that it does not really need encrypted communication for such urls RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-12-17 (2016-12-17, 22:25)enerdude Wrote: ^^^ The authentication is just to stop the whole world abusing your server if the url accidentally ends up on the front page of Google. I'll add that change in for you without a Setting. If someone gives me a good reason to keep it in I'll change it. It's easy enough for someone to do a MITM attack on SSL certificates anyway. Just ask Theresa May. She just made it legal. [EDIT] Try 0.0.256. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-12-17 @enerdude. What's the trick to getting it working with Dropbox? I'm trying and failing here. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - FXB78 - 2016-12-17 (2016-12-17, 22:08)primaeval Wrote:All I'm doing is playing a stream, then pressing backspace to go to the EPG then ESC to exit the addon, except it doesn't exit the addon any more it just goes back to fullscreen. The ESC key seems to act the same as backspace & just toggles between fullscreen or the EPG. Previously ESC would exit the addon completely.(2016-12-17, 21:44)FXB78 Wrote:(2016-12-16, 15:26)primaeval Wrote: The variable startDate is a datetime version of start which is used for the time string. You can use that instead.Thanks, I managed to format it to my liking by using strftime I've noticed since the last update the ESC key doesn't seem to exit the guide when a stream is playing, I'm guessing this has been missed with the new keymapping? EDIT - I managed to fix it by un-commenting lines 663,665,666,669,671,672 in gui.py, I've not noticed any problems by doing this & the functionality is back as it was RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - ködi-zömbie - 2016-12-18 Can I ask for a wish for christmas ?? I want to scroll the list by touchscreen too. Can you do this for smartphone devices ? RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - enerdude - 2016-12-18 (2016-12-17, 22:38)primaeval Wrote: It's easy enough for someone to do a MITM attack on SSL certificates anyway. Just ask Theresa May. She just made it legal. lol true (2016-12-17, 23:18)primaeval Wrote: @enerdude. What's the trick to getting it working with Dropbox? The format of the dropbox url needs to be a direct link with format of e.g. Code: https://dl.dropboxusercontent.com/u/xxxxxx/TvGuide/guide.xmltv edit: thanks 0.0.256 is working great! RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - Scott00007 - 2016-12-18 (2016-12-17, 22:02)primaeval Wrote:(2016-12-17, 21:33)Scott00007 Wrote: @primaeval....Thanks for taking my questions/suggestions under consideration. I didn't realize that the images were supposed to be handled by the xmltv file. I do not have any control over the xmltv file I use but I will see if there is anything I can do to get more images. Well it makes sense not to be downloading everything in the back ground. I am guessing that if I had access to a better xmltv file it would come with more images. Thanks for looking into this some more. I will stop whining about images now lol. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - ed_davidson - 2016-12-18 My guide is showing sunday night football on saturday night. My time zone is MST. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-12-18 (2016-12-17, 23:52)FXB78 Wrote:(2016-12-17, 22:08)primaeval Wrote:All I'm doing is playing a stream, then pressing backspace to go to the EPG then ESC to exit the addon, except it doesn't exit the addon any more it just goes back to fullscreen. The ESC key seems to act the same as backspace & just toggles between fullscreen or the EPG. Previously ESC would exit the addon completely.(2016-12-17, 21:44)FXB78 Wrote: Thanks, I managed to format it to my liking by using strftime I've noticed since the last update the ESC key doesn't seem to exit the guide when a stream is playing, I'm guessing this has been missed with the new keymapping? Thanks. I new I should leave those commented lines in the code, just in case. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2016-12-18 (2016-12-18, 00:36)enerdude Wrote:(2016-12-17, 22:38)primaeval Wrote: It's easy enough for someone to do a MITM attack on SSL certificates anyway. Just ask Theresa May. She just made it legal. I'm ending up with a link like this that doesn't work. Code: https://dl.dropboxusercontent.com/content_link/******/file?dl=1 Could you talk me through it like I was 5 years old. |