• 1
  • 153
  • 154
  • 155(current)
  • 156
  • 157
  • 694
[OLD/CLOSED] PseudoTV Live - Set-Top box solution
Hey Lunatixz, first off fantastic work. Secondly I've made two very minor improvements to help with the wife acceptance factor and thought maybe you could incorporate them into main branch if you like them. The first is functioning page up/down buttons in the EPG. I've added the following code to the onAction function (About line 492 in EPGWindow.py)
Code:
elif action == ACTION_MOVE_DOWN:
                self.GoDown()          
                if self.showingInfo:
                    self.infoOffsetV -= 1
            elif action == ACTION_PAGEDOWN:
                self.GoPgDown()          
            elif action == ACTION_MOVE_UP:
                self.GoUp()          
                if self.showingInfo:
                    self.infoOffsetV += 1
            elif action == ACTION_PAGEUP:
                self.GoPgUp()
and the following functions (Around line 615 again in EPGWindow.py)

Code:
def GoPgDown(self):
        self.log('GoPgDown')
        newchannel = self.centerChannel
        for x in range(0, 6):
            newchannel = self.MyOverlayWindow.fixChannel(newchannel + 1)
        self.setChannelButtons(self.shownTime, self.MyOverlayWindow.fixChannel(newchannel))
        self.setProperButton(0)
        self.log('GoPgDown return')

    def GoPgUp(self):
        self.log('GoPgUp')
        newchannel = self.centerChannel
        for x in range(0, 6):
            newchannel = self.MyOverlayWindow.fixChannel(newchannel - 1, False)
        self.setChannelButtons(self.shownTime, self.MyOverlayWindow.fixChannel(newchannel))
        self.setProperButton(0)
        self.log('GoPgUp return')
This works well for me in the default skin and moves the listing by one page. You can obviously tweak it to your needs.

The second change is to stop fast forward/rewind while watching live tv which causes xbmc to explode (which means I have to get off my ass and restart it Smile)
In Overlay.py around line 1164 I changed the ACTION_MOVE_LEFT and ACTION_MOVE_RIGHT actions to:

Code:
elif action == ACTION_MOVE_LEFT:
            if self.showingInfo:
                self.infoOffset -= 1
                self.showInfo(10.0)
            else:
                chtype = int(ADDON_SETTINGS.getSetting('Channel_' + str(self.currentChannel) + '_type'))
                if chtype != 9:
                    xbmc.executebuiltin("PlayerControl(SmallSkipBackward)")
        elif action == ACTION_MOVE_RIGHT:
            if self.showingInfo:
                self.infoOffset += 1
                self.showInfo(10.0)
            else:
                chtype = int(ADDON_SETTINGS.getSetting('Channel_' + str(self.currentChannel) + '_type'))
                if chtype != 9:            
                    xbmc.executebuiltin("PlayerControl(SmallSkipForward)")

Hope these help, keep up the good work
Wow Mcorcoran, thank you! I'm going to implement these changes tonight and test, but sounds like it will help with the wife and kids using the software with less potential problems and more functionality. Thanks for you helping us all with the WAF (Wife Acceptance Factor)!!!
(2014-01-16, 15:59)mcorcoran Wrote: Hey Lunatixz, first off fantastic work. Secondly I've made two very minor improvements to help with the wife acceptance factor and thought maybe you could incorporate them into main branch if you like them. The first is functioning page up/down buttons in the EPG. I've added the following code to the onAction function (About line 492 in EPGWindow.py)
Code:
elif action == ACTION_MOVE_DOWN:
                self.GoDown()          
                if self.showingInfo:
                    self.infoOffsetV -= 1
            elif action == ACTION_PAGEDOWN:
                self.GoPgDown()          
            elif action == ACTION_MOVE_UP:
                self.GoUp()          
                if self.showingInfo:
                    self.infoOffsetV += 1
            elif action == ACTION_PAGEUP:
                self.GoPgUp()
and the following functions (Around line 615 again in EPGWindow.py)

Code:
def GoPgDown(self):
        self.log('GoPgDown')
        newchannel = self.centerChannel
        for x in range(0, 6):
            newchannel = self.MyOverlayWindow.fixChannel(newchannel + 1)
        self.setChannelButtons(self.shownTime, self.MyOverlayWindow.fixChannel(newchannel))
        self.setProperButton(0)
        self.log('GoPgDown return')

    def GoPgUp(self):
        self.log('GoPgUp')
        newchannel = self.centerChannel
        for x in range(0, 6):
            newchannel = self.MyOverlayWindow.fixChannel(newchannel - 1, False)
        self.setChannelButtons(self.shownTime, self.MyOverlayWindow.fixChannel(newchannel))
        self.setProperButton(0)
        self.log('GoPgUp return')
This works well for me in the default skin and moves the listing by one page. You can obviously tweak it to your needs.

The second change is to stop fast forward/rewind while watching live tv which causes xbmc to explode (which means I have to get off my ass and restart it Smile)
In Overlay.py around line 1164 I changed the ACTION_MOVE_LEFT and ACTION_MOVE_RIGHT actions to:

Code:
elif action == ACTION_MOVE_LEFT:
            if self.showingInfo:
                self.infoOffset -= 1
                self.showInfo(10.0)
            else:
                chtype = int(ADDON_SETTINGS.getSetting('Channel_' + str(self.currentChannel) + '_type'))
                if chtype != 9:
                    xbmc.executebuiltin("PlayerControl(SmallSkipBackward)")
        elif action == ACTION_MOVE_RIGHT:
            if self.showingInfo:
                self.infoOffset += 1
                self.showInfo(10.0)
            else:
                chtype = int(ADDON_SETTINGS.getSetting('Channel_' + str(self.currentChannel) + '_type'))
                if chtype != 9:            
                    xbmc.executebuiltin("PlayerControl(SmallSkipForward)")

Hope these help, keep up the good work

Thanks, I'll review the changes...
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
Luna, could the no fast forward/rewind be for channel type 8 and 9 if you merge into git. Not sure python's syntax but here is a shot at it.

if chtype != 8 OR chtype != 9:
(2014-01-16, 20:17)Indy_star Wrote: Luna, could the no fast forward/rewind be for channel type 8 and 9 if you merge into git. Not sure python's syntax but here is a shot at it.

if chtype != 8 OR chtype != 9:

Yes, I'll add something for chtype 8
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
Updates to latest master. Deleted script folder and replaced it with the new master update. Deleted cache folder and settings.xml. Edited settings. Ran add-on. Dialogue box pops up it seems to update a few channels but then I only get a blank screen and no response from key presses.


http://pastebin.com/dYvQidk7
Is ustvnow support just dead for now or dead forever?
Image
(2014-01-16, 21:43)elikiasdad Wrote: Updates to latest master. Deleted script folder and replaced it with the new master update. Deleted cache folder and settings.xml. Edited settings. Ran add-on. Dialogue box pops up it seems to update a few channels but then I only get a blank screen and no response from key presses.


http://pastebin.com/dYvQidk7

fix will be included in tonight's update
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
(2014-01-16, 22:08)Lunatixz Wrote:
(2014-01-16, 21:43)elikiasdad Wrote: Updates to latest master. Deleted script folder and replaced it with the new master update. Deleted cache folder and settings.xml. Edited settings. Ran add-on. Dialogue box pops up it seems to update a few channels but then I only get a blank screen and no response from key presses.


http://pastebin.com/dYvQidk7

fix will be included in tonight's update

Cool thanks Luna
(2014-01-16, 22:00)jiggsaw Wrote: Is ustvnow support just dead for now or dead forever?

Dead!! , USTVNOW development team are a bunch of dolts!

Its a shame, I wanted to add full support for their PVR service and premium feeds...
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
(2014-01-06, 16:28)Lunatixz Wrote: XBMC favorites will be added when in channel manager config for the new channel types is available; which means right before final release...
Android Companion tool will be a PseudoTV Live channel manager, and much more... details to come when I finish it up...
PVR, and Direct Plugin directory is on hold till Gotham RC...

I'm also in the process of bulking up donor features...

First, I appreciate everything you have done. It's truly a shining gem in the XBMC add-on world. I do have concerns about the extra features for donors. I don't think this is the way of XBMC. Correct me if im wrong here. This puts pressure on me to donate to you for newer features and beta's before released. I'm dying for a Gotham release of this add-on, so I would love to donate to push that baby out. I certainly don't want to donate just to have special features, or special treatment. I want to donate because I support the programmer and his mission. Could you elaborate on donor features?
(2014-01-16, 22:34)tdhz77 Wrote:
(2014-01-06, 16:28)Lunatixz Wrote:
(2014-01-06, 16:19)spyder Wrote: [ ] Ability to add channels via XBMC favorites list.
[ ] Android Companion Tool
[ ] PVR (Recording Feature)
[ ] Direct Plugin directory channel building (ie. Mylibrary method without the need to build strms).

Any progress on these features? I know the list states 'may include', but these were the features I've been waiting for. BTW, what is the "Android Companion Tool"? I don't know when this got added to the list, and must have have missed when/if it was discussed.
XBMC favorites will be added when in channel manager config for the new channel types is available; which means right before final release...
Android Companion tool will be a PseudoTV Live channel manager, and much more... details to come when I finish it up...
PVR, and Direct Plugin directory is on hold till Gotham RC...

I'm also in the process of bulking up donor features...

Extra features for donors. I don't think this is the way of XBMC. Correct me if im wrong here. That is putting pressure on me to donate to me because I'm dying for a Gotham release. No doubt I want to donate, but I certainly don't want to donate just to have special features. Could you elaborate?

Are you trolling?? I'm not going to answer this nonsense! Read through the thread, you will find information from when I decided to provide this service... which is completely optional.

All I will say is, I have never provided something for Donors that in some why is not available for free!! Donors just get more...
Want trailers? I provided tons of ways for free to get trailers... want extra options for trailer sources... Donate! seems fair enough to me... My way of saying thank you for your support!!
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
I just was curious. Donated.
(2014-01-16, 22:22)Lunatixz Wrote:
(2014-01-16, 22:00)jiggsaw Wrote: Is ustvnow support just dead for now or dead forever?

Dead!! , USTVNOW development team are a bunch of dolts!

Its a shame, I wanted to add full support for their PVR service and premium feeds...

What a bunch of jerks to be honest. Did they not realise that it would bring them a bunch of customers? Is there a similar service that you're planning on using?
(2014-01-17, 00:29)Elixxen Wrote:
(2014-01-16, 22:22)Lunatixz Wrote:
(2014-01-16, 22:00)jiggsaw Wrote: Is ustvnow support just dead for now or dead forever?

Dead!! , USTVNOW development team are a bunch of dolts!

Its a shame, I wanted to add full support for their PVR service and premium feeds...

What a bunch of jerks to be honest. Did they not realise that it would bring them a bunch of customers? Is there a similar service that you're planning on using?

Honestly I question the legitimacy of any current rebroadcast website, so no... Not at the moment...

Awhile back I asked all my user to write ustvnow, and request support for my plugin... but either Ustvnow didn't listen or too few user wrote in... Either way no looking back... If you have any suggestions for legal services you would like to see supported let me know.
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
  • 1
  • 153
  • 154
  • 155(current)
  • 156
  • 157
  • 694

Logout Mark Read Team Forum Stats Members Help
[OLD/CLOSED] PseudoTV Live - Set-Top box solution45