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. ;) - Kanipek - 2017-03-22 (2017-03-22, 21:01)primaeval Wrote: I'm the same as most devs. Love coding. Hate documenting. I get it. Last thing is always the documentation. I see only 1 read me about setting the paths. I assume you mean when the thread got removed. Bad times. I understand the reasoning though. Don't let that discourage you. Logos - I have then all named for how the channels are in NextPVR So AMC HD is AMC HD.png etc. I pointed the add-on to that folder but like I said it auto populated maybe 5. I love this add-on but setting it up was hard. So hard that I made a copy of it when I finished and copied that to my Android/Windows clients(after installing on them) - fortunately that worked. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2017-03-22 (2017-03-22, 21:36)Kanipek Wrote: Logos - I have then all named for how the channels are in NextPVR So AMC HD is AMC HD.png etc. I pointed the add-on to that folder but like I said it auto populated maybe 5. I'm surprised the logos didn't match. The code does a lowercase match with spaces ignored. https://github.com/primaeval/script.tvguide.fullscreen/blob/master/source.py#L1993 If the logos are in a URL folder it changes spaces to %20 which might be the problem. https://github.com/primaeval/script.tvguide.fullscreen/blob/master/source.py#L1983 RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - FXB78 - 2017-03-22 Spaces in logo file names work fine for me using Windows, you have to make sure your logos match the names in the xmltv data. Don't know about other O/S though. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - Kanipek - 2017-03-22 (2017-03-22, 21:52)primaeval Wrote: I'm surprised the logos didn't match. The code does a lowercase match with spaces ignored. lowercase match? Case ignored or required? Logos are in a local folder. How do you stop a recording? I can start one with 8 from the main EPG window. 9 does not stop it. 8 again starts a new copy of the same stream or a new stream if I select a different channel. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - Hinkel - 2017-03-22 (2017-03-21, 20:23)MikeKL Wrote: @Hinkel, @primaeval @primaeval, I sent you (pm) log file. @MileKL, Thanks. I'll join you in this struggle. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2017-03-22 (2017-03-22, 22:28)Hinkel Wrote:(2017-03-21, 20:23)MikeKL Wrote: @Hinkel, @primaeval I've been trying to build Kodi all day so I can find out why it crashes. Some of the documentation is a bit out of date so it's hard going. I'll let you know if I get anywhere. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2017-03-22 (2017-03-22, 22:17)Kanipek Wrote:(2017-03-22, 21:52)primaeval Wrote: I'm surprised the logos didn't match. The code does a lowercase match with spaces ignored. Case ignored. What OS are you trying to stop recording on? If it is Windows it trys to run Code: taskill /f /im ffmpeg.exe Code: pkill -2 ffmpeg Note that it will try to kill all ffmpegs. This is not a robust recording tool but it might help if you want to quickly capture something on the telly. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - Kanipek - 2017-03-23 Case ignored. What OS are you trying to stop recording on? If it is Windows it trys to run Code: taskill /f /im ffmpeg.exe Code: pkill -2 ffmpeg Note that it will try to kill all ffmpegs. This is not a robust recording tool but it might help if you want to quickly capture something on the telly. Is it possible to link the recording back to NextPVR? Since it's already configured to use those channels. Is that a possibility? RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2017-03-23 (2017-03-23, 00:08)Kanipek Wrote: Is it possible to link the recording back to NextPVR? Since it's already configured to use those channels. Is that a possibility? If NextPVR just dumps its recordings in a folder you should be able to set the same AutoPlayWith folder for the guide. If that works, let me know if you want the name of the recordings to be changed. If it needs messing around with custom protocols in a networked database, you'll have to do it yourself. Another thing to consider is that you can use other PVR backends to mix and match TV Capture hardware and IPTV streams. I use TVHeadend sometimes. It can be a bit tricky to set up though. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2017-03-23 @Hinkel, @MikeKL I think I've got a Leia fix. Could you test it out for me. It's in the leia branch of my repo. https://github.com/primaeval/script.tvguide.fullscreen/tree/leia I haven't worked out how to set up my repo for multiple Kodi versions of the same addon yet. Does anyone know how to do it? The PIL image library causes Kodi crashes in Leia so I've reduced the need for it. Don't use the LogoDB functions in Leia or it will probably crash. The Stream Setup issue should also be fixed. They have taken out StringCompare and replaced it with String.IsEqual. It would have been nice to have it left in for a while longer. That is going to affect all the TV Guide derivatives. If you are a tv guide dev the fix is here: https://github.com/primaeval/script.tvguide.fullscreen/commit/437571cfee7595ff949bd74a8e0f31d6bceaae3e RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - Kanipek - 2017-03-23 Is there a way/setting to change the length of the recordings? I am getting a series of files each 6 minutes 41 seconds long. I don't know if this is an add-on, ffmpeg or NextPVR setting. Thanks! RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2017-03-23 (2017-03-23, 18:49)Kanipek Wrote: Is there a way/setting to change the length of the recordings? That sounds like about the size of a transport stream segment. I would guess it is something to do with NextPVR. ffmpeg is pretty good at recording. Usuauly streams resolve to m3u playlists with lots of ts segments of about 8 minutes each. Something is probably recording each one instead of joining them back together. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - MikeKL - 2017-03-23 (2017-03-23, 18:42)primaeval Wrote: @Hinkel, @MikeKL I think I've got a Leia fix. Could you test it out for me. It's in the leia branch of my repo.@primaeval Installed latest leia branch version from git (over top of 0.0.319) and with a quick test issue appears to be fully resolved for me on rPi2 (Panels displaying addons and channels and stream types provided by addon) ----edit---- Just installed latest TV Guide Fullscreen build on two Win10 PC's and accessed TV guide EPG, assigned and watched a channel without crashing kodi. Great News!! (Running Kodi Krypton 32 bit 2017-Mar-20 from http://mirrors.kodi.tv/nightlies/win32/Krypton/ ) RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - Kanipek - 2017-03-23 (2017-03-23, 18:58)primaeval Wrote: That sounds like about the size of a transport stream segment. I would guess it is something to do with NextPVR. ffmpeg is pretty good at recording. Yeah I think I got it worked out. It is on the NextPVR end. Either switching to "EPG Based" in Live TV Buffer or a registry entry. Still testing it out. Edit: It is a registry setting in NextPVR: The buffer is controlled by (Win 7 x64) HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\NPVR\SlipSeconds = xxxx (decimal DWORD)[Seconds] Just FYI in case anyone is having the same issue. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - Hinkel - 2017-03-23 (2017-03-23, 18:42)primaeval Wrote: @Hinkel, @MikeKL I think I've got a Leia fix. Could you test it out for me. It's in the leia branch of my repo. @primaeval, its working fine. Thank you very much. |