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. ;) - primaeval - 2018-03-25 If you just want to watch the channels from TVGF from your phone etc via jsonrpc then addons.ini Player is all you need for similar functionality. What do you want to control with jsonrpc? RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - gottahavit - 2018-03-25 I want to change the channel in TVGFS to the one I provide through JSON RPC. I can do everything else except enter the channel number setup as a shortcut in TVGFS. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2018-03-25 There is a whole section of jsonrpc commands for providing input. Won't that work? https://kodi.wiki/view/JSON-RPC_API/v8#Input You can set up a key to start entering the channel shortcut, then enter the 3 digit code and it will change channel. The default is SHIFT. https://github.com/primaeval/script.tvguide.fullscreen/blob/master/ActionEditor.py#L317 You can use MIDDLE MOUSE to bring up the channel number dialog too. https://github.com/primaeval/script.tvguide.fullscreen/blob/master/ActionEditor.py#L319 If you get it working post the code here so we can all use it. Thanks. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - gottahavit - 2018-03-25 ok I'll try setting up something to bring up the dialog. The issue with JSON RPC is the sendtext command does nothing if there is no input text dialog with focus. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2018-03-25 You can map most commands up to most actions in the Action Editor. This is a discussion about sending action request from jsonrpc. You might have read it. https://forum.kodi.tv/showthread.php?tid=144439 RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - gottahavit - 2018-03-27 ok when you said choose channel dialog you meant the choose stream window in TVGFS? I don't actually get a channel dialog that accepts input as far as I can tell. in order for input.sendtext to work it needs to be a text field kodi recognizes as accepting text input. I can't seem to get any screen in TFGFS that does this. Maybe I am missing something? Update: Never mind, found the dialog. Now to see if I can get JSON RPC to invoke, enter and confirm RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - gottahavit - 2018-03-27 Got it to work from fiddler, Thanks, now to code it into my client app. essentially just JSON RPC action http://192.168.1.5:8080/jsonrpc?request={"jsonrpc": "2.0","method":"Input.ExecuteAction","params":{"action":"middleclick"},"id":0} then JSON RPC channel http://192.168.1.5:8080/jsonrpc?request={"jsonrpc":"2.0","method":"Input.SendText","params": {"text": "001", "done":true},"id":1} works good,now to modify the google home app to send these so i can change channels with voice. Thanks for all the help, if I get the google home app working with this i'll post the mods. Probably will try to change the dialog to be hidden, may break the sendtext tho. UPDATE: Got that working, now I can use google home voice control to change channel on TVGFS, something new I just noticed tho. If I change channel with channel numbers either by dialog or OSD, the guide scrolls to that channel, but then removes all channels above it. I need to back out to get them to show up again. thoughts? Also any way to have number shortcuts but not display them? Thanks RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2018-03-27 You could use the 9999 hidden control to input the channel number. That might not work because it is a label. You need to map up the shift key action with something like the Kodi "Keymap Editor" addon. Set the Virtual Keyboard \ Shift key to the actual Shift key. If the "Channel Shortcut Type" isn't none the numbers will show up. It would probably be too confusing to hide them as you would have to guess the numbers for index or sort number. I could make a setting if you really need it. Alternatively you could clone a skin and set the controls starting at 4410 to visible=false. https://github.com/primaeval/script.tvguide.fullscreen/wiki/Settings#skin-type-skinsource If you come up with another plan let me know and I'll see if I can add it in. Maybe just a hidden text box. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - MB32 - 2018-03-27 The more I play around with TVGF, the more impressed I am. The ability to tweak almost every aspect of the display to your liking is wonderful. And support for Kodi add-ons is indispensable. But I still have a couple of questions: 1. I see from your features list that TVGF supports importing Kodi PVR channels, but dont see a way to import all of my TV Headend channels at once... and it does not seem to work manually either: if I select "import PVR" on an existing channel in the guide, nothing happens. TV Headend PVR client is functioning normally, so I know thats not the problem. 2. How would you manually add a stream to the guide from an add-on if you have no source for program data? I can perform 'stream setup' on a blank line in the guide, but the choices have no effect RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2018-03-27 Thanks. Import PVR needs the Kodi Web Server service to be turned on as it gets the channel streams from jsonrpc. The channels get added to a dummy addon in addons.ini called [script.tvguide.fullscreen] If you go back into Stream Setup your pvr channels should be in Addons \ TV Guide Fullscreen. It plays the channels used the Kodi pvr protocol eg Code: BBC One = pvr://channels/tv/All channels/pvr.iptvsimple_1130691108.pvr Pvr channels aren't fully integrated with TVGF. The overlays are from the Kodi PVR and AutoPlayWith probably won't record properly. If you want some dummy channels without epg data: make an xmltv file with just the channels section and add it as a Secondary Source in Setttings \ Lab3. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - gottahavit - 2018-03-27 yes I got it all working except whenever I change channel it redraws the EPG and then loses all chanels above the one it scrolled to until I restart app. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2018-03-27 How do you mean "loses"? It is supposed to scroll to the program and optionally play the channel. There are some settings in Settings\Playback to control what it does. Have you got any Categories set up which might causing problems? RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - gottahavit - 2018-03-28 Yes I have an all channels a favorites and a sports category. when i change channel using either dialog or OSD number input it scrolls that channel to top of guide and I can no longer scroll up to channels above it. Instead it either goes up to cat bar or wraps to bottom of guide depending if skin supports categories. once it wraps then all channels are there again. Its like it thinks the current channel is first in list. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - primaeval - 2018-03-28 (2018-03-28, 03:36)gottahavit Wrote: Yes I have an all channels a favorites and a sports category. when i change channel using either dialog or OSD number input it scrolls that channel to top of guide and I can no longer scroll up to channels above it. Instead it either goes up to cat bar or wraps to bottom of guide depending if skin supports categories. once it wraps then all channels are there again. Its like it thinks the current channel is first in list.If you use a cat bar skin you need to scroll up with the Page Up key unless you turn Settings \ Appearance \ Up to Cat Bar = No If you want to get to the cat bar then you can map up the Categories Bar action in the Lab1\Action Editor. You can also use m to get to the popup catbar. Some other skins make the main Menu semi-visible so that the categories in the menu appear as the cat bar. RE: TV Guide Fullscreen - possibly the most powerful TV Guide in the world. ;) - gottahavit - 2018-03-29 This happens on all skins and only if I change channel with the shortcuts. I think there's a missing guide redraw somewhere, I'll see if I can find it. |