[OLD/CLOSED] PseudoTV Live - Set-Top box solution
(2014-09-23, 13:42)tromy Wrote:
(2014-09-22, 19:29)Lunatixz Wrote:
(2014-09-22, 19:14)tromy Wrote: edit

So to sum up,the upgrade from 0.4.7. to 0.5.0a gives me 3 issues:

1.None key on the keyboard brings up the option to download subs(before the upgrade key "M" or "S" did the job)

2.Xmltv out of sync.I use manual setup through pvr backend with the same xmltv file I get from the the early stages of PLTV

3.Unicode issue with movie smart playlists(the known issue)

Roll back to 0.4.7. all issues vanished

Thanks

that's too big a gap between versions... don't have time right now to track down all changes between then and now, lol
I"ll try and find free time...

your xmltv file looks okay, you can try rebuilding your xmltv file with UTC and without UTC enabled.
Lunatixz,
I searched and think I found solutions to my issues.All tested under stable version 0.5.0

1.xmltv sync issue.Changed those lines under Channel List py:

Code:
now = datetime.datetime.now()
                        #offset = 0# Our difference from GMT in hours, minus 4 hours for the initial offset of the tv guide data
                        offset = ((time.timezone / 3600) - 5 ) * -1
                        stopDate = self.parseXMLTVDate(elem.get('stop'), offset)
                        startDate = self.parseXMLTVDate(elem.get('start'), offset)
to
Code:
now = datetime.datetime.now()
                        offset = 0# Our difference from GMT in hours, minus 4 hours for the initial offset of the tv guide data
                       # offset = ((time.timezone / 3600) - 5 ) * -1
                        stopDate = self.parseXMLTVDate(elem.get('stop'), offset)
                        startDate = self.parseXMLTVDate(elem.get('start'), offset)
and I see it works perfect

2.Key "S" for downloading subs.Changed those lines under Overlay py:

Code:
elif action == ACTION_SHOW_SUBTITLES:
            xbmc.executebuiltin("ActivateWindow(SubtitleSearch)")
to
Code:
elif action == ACTION_OSD:
            xbmc.executebuiltin("ActivateWindow(12901)")
and key "S" brings up the subs option to download

3.Unicode issue on smart playlists comes only if the genre of a movie is not in english(changed genres to english and they work)
The issue appeared in v0.4.7.d The previous version 0.4.7c works fine but I couldn't find the difference

Those changes aren't recommend, they will work for you but not the masses.

Change 1, all you are doing is bypassing UTC offsets. The correct way to fix this is by building your xmltv with UTC enabled.

Change 2. The window you are opening is not commonly associated with sub titles its actually the player menu. There is already a key to open subtitles. Either you have a custom xbmc keymap, or your xbmc skin was improperly ported.
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?


Messages In This Thread
RE: [FORK] - by jcaa6479 - 2013-07-16, 23:25
Re: RE: - by bry - 2013-07-19, 08:42
Audio Muting Consistently ? - by gjwAudio - 2013-08-18, 08:25
PTVL Anomalies... - by gjwAudio - 2013-08-25, 01:15
Help Find The BAD Channel... - by gjwAudio - 2013-08-27, 02:12
RE: - by DLWhittet - 2013-10-13, 02:48
Problems with Pseudo TV Live - by media-mogul - 2013-11-07, 22:45
Setup wifi cam stream - by rebelmaveric19 - 2013-12-12, 00:54
Black Screen - by Antisthenes - 2014-03-03, 02:06
RE: [FORK] - by Lunatixz - 2014-03-25, 18:21
Re: RE: - by Lunatixz - 2014-04-26, 17:10
Update breaks autostart? - by grumpygamer - 2014-07-12, 11:48
Re: RE: Update breaks autostart? - by bry - 2014-07-12, 13:44
PseudoTV Live + HDHomerun Tutorial - by bry - 2014-07-25, 23:17
RE: [FORK] - by tromy - 2014-09-22, 19:14
Re: RE: [FORK] "PseudoTV Live" w/ LiveTV, InternetTV and added Strm Support - by Lunatixz - 2014-09-23, 14:48
Custom Live Channel - by GavinCampbell - 2014-11-01, 18:20
Options menu? - by Pendragon445 - 2014-11-02, 20:23
Prevent Stop Button - by GavinCampbell - 2014-11-13, 22:45
RE: [FORK] - by herpkektop - 2015-02-11, 11:22
RE: [FORK] - by herpkektop - 2015-02-11, 17:55
PseudoTv issue - by adamp237 - 2015-03-02, 03:41
No Guide - Android Arm - by MoRbIdBoY - 2015-03-14, 20:26
Chanel Issues - by BlueKalel - 2015-05-03, 07:23
RE: donation - by gkithes - 2015-06-11, 02:27
RE: donation - by bornagainpenguin - 2015-06-11, 03:55
Channel Sharing Feature Freezing - by RORO-RR - 2015-07-11, 18:48
Logout Mark Read Team Forum Stats Members Help
[OLD/CLOSED] PseudoTV Live - Set-Top box solution45