Posts: 178
Joined: Oct 2012
Reputation:
13
Not sure if there is a setting for this somewhere.
When selecting a channel, I get a list of sources (2 or 3). This is the way I want it.
If the first source happens to be the wrong channel or I have issues with it, when I go back to the EPG and select the same channel, it just plays the source that I had selecting previously. Is there a way that when I go back to the EPG and select the same channel, it will bring up the list of sources again?
The only way I have found it to do this, is to go into the context menu and select watch channel
Emby, NVIDIA Shield, QNAP
Posts: 57
Joined: Dec 2015
Reputation:
3
I found the issue with shortcuts causing the guide to messed up:
The playShortcut method reset self.channelIdx which causes the guide redraw to think that's the first channel in the guide. I rewrote the method to to not do this and as far as I can tell it all works fine now.
def playShortcut(self):
n=0
self.channel_number_input = False
self.viewStartDate = datetime.datetime.today()
self.viewStartDate -= datetime.timedelta(minutes=self.viewStartDate.minute % 30,
seconds=self.viewStartDate.second)
channelList = self.database.getChannelList(onlyVisible=True,all=False)
if ADDON.getSetting('channel.shortcut') == '2':
for i in range(len(channelList)):
if self.channel_number == channelList[i].id:
n = i
break
else:
n = int(self.channel_number) - 1
self.channel_number = ""
self.getControl(9999).setLabel(self.channel_number)
behaviour = int(ADDON.getSetting('channel.shortcut.behaviour'))
if (self.mode != MODE_EPG) and (behaviour > 0):
program = utils.Program(channel=channelList[n], title='', sub_title='', startDate=None, endDate=None, description='', categories='')
self.playOrChoose(program)
elif (behaviour == 2) or (behaviour == 1 and self.mode != MODE_EPG):
self._hideOsdOnly()
self._hideQuickEpg()
self.focusPoint.y = 0
self.onRedrawEPG(n, self.viewStartDate)
xbmc.executebuiltin('Action(Select)')
else:
self._hideOsdOnly()
self._hideQuickEpg()
self.focusPoint.y = 0
self.onRedrawEPG(n, self.viewStartDate)
Posts: 3,101
Joined: Apr 2014
Reputation:
270
Thanks. Could you add it as a Pull Request on Github.
If you can't don't worry.
Posts: 57
Joined: Dec 2015
Reputation:
3
2018-04-02, 01:45
(This post was last modified: 2018-04-02, 02:18 by gottahavit.)
I will if I can make it work properly. Thought I had it but still creates a mess of the guide. For now I just change the code to:
program = utils.Program(channel=channelList[n], title='', sub_title='', startDate=None, endDate=None, description='', categories='')
self.playOrChoose(program)
This never scrolls or redraws guide and works fine
Also As soon as I refine it I'll post the changes to this and to "Omer Turgman" node js app to expose new commands to change channel by name or number through google home voice commands. Using IFTTT webhook and these two apps, I now have a single recipe which will let me say part of or full channel name or number and TVGFS will start playing that channel Right now it's about 80%.
if I can get it to scroll properly, I should be able to get program searches to work pretty easily too.
Posts: 5
Joined: May 2014
Reputation:
0
Hi.
I think this TV guide is exactly what i need, full screen and for URL source iptv. I still have a question about installation and looking for a walk trough how and what to install from the repo primaevals beta dev repository version 0.0.2.
Is there a guide around for this, sorry if i ask silly and havent found it yet
bt Finn
Posts: 57
Joined: Dec 2015
Reputation:
3
hidden input wont work as rpc needs dialog.
to reproduce scroll issue, I just turn on shortcuts type index. have guide, type like 030 to go to a channel. It scrolls that channel to top but when you come back to guide you can't scroll up from channel 030. It thinks thats the first channel.
Posts: 3,101
Joined: Apr 2014
Reputation:
270
Where do you go before you "come back to guide " and how do you come back again?
Playing a channel and stopping it doesn't seem to do anything strange.
Post or pm me your settings.xml and I'll see if it is a special combination that causes problems.
Posts: 3,101
Joined: Apr 2014
Reputation:
270
Post or pm me your settings.xml and I'll see if it is a special combination that causes problems.
Posts: 202
Joined: Jul 2011
Reputation:
4
mzup
Senior Member
Posts: 202
Hey Primaeval, Dr Eggs. Me again. I was the guy who had that minor issue with keeping the setting of amount of channels to show per page set to a number other than 10. Well now I found another minor issue and may also be related to the Dr's skin. When I am watching a show and pull up the guide full screen by using the back button, if I hit back again it exits TVGF. So I found the setting in configuration to disabled that, (unchecking Exit on Back) but it is doing the same thing where it doesn't hold the change. So I don't know if it is the WMC skin or issue with TVGF itself.
Other than that all is great!!!
Thanks
Posts: 3,101
Joined: Apr 2014
Reputation:
270
Does it do the same with the Default skin?