• 1
  • 417
  • 418
  • 419(current)
  • 420
  • 421
  • 694
[OLD/CLOSED] PseudoTV Live - Set-Top box solution
(2014-09-22, 19:14)tromy Wrote: edit

(2014-09-22, 18:27)Lunatixz Wrote:
(2014-09-22, 17:07)tromy Wrote: Here is the xmltv file: https://www.dropbox.com/s/l7v2x1wxr269t5...v.xml?dl=0
Have been using it with success until last dev

Also "S" brings up only "quit menu"not sub menu on my end using confluence

Version 0.4.7 "S" brings up both menus(subs+quit)
"M" brings up subs menu

ThanksSmile

My bad,
T Toggle subtitles on and off

no M brings up the player OSD.

K back to problem... so you are saying something broke in the latest build?

refresh my memory:

Hdhomerun?
strm or upnp autotune?
manual setup?

what broke again... sorry at wokr, don't have time to look over past posts...
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.
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
(2014-09-22, 19:29)Lunatixz Wrote:
(2014-09-22, 19:14)tromy Wrote: edit

(2014-09-22, 18:27)Lunatixz Wrote: My bad,
T Toggle subtitles on and off

no M brings up the player OSD.

K back to problem... so you are saying something broke in the latest build?

refresh my memory:

Hdhomerun?
strm or upnp autotune?
manual setup?

what broke again... sorry at wokr, don't have time to look over past posts...
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
(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?
(2014-09-23, 14:48)Lunatixz Wrote: 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.

Change 1,I'll stick with that change until i can build a new script to get xmltv with UTC enabled.The xmltv I use now is "borrowed" from a greek plugin(thanks @Lambda81)

Change 2,I want to open the player menu because I want to download subs not just to turn them on/off.Let's say i use direct plugin channel and I want to see a movie but it has no subs then i open the player menu,download subs in my language and watch the movie.
Maybe I am doing something wrong?Is there another way?
(2014-09-23, 18:11)tromy Wrote:
(2014-09-23, 14:48)Lunatixz Wrote: 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.

Change 1,I'll stick with that change until i can build a new script to get xmltv with UTC enabled.The xmltv I use now is "borrowed" from a greek plugin(thanks @Lambda81)

Change 2,I want to open the player menu because I want to download subs not just to turn them on/off.Let's say i use direct plugin channel and I want to see a movie but it has no subs then i open the player menu,download subs in my language and watch the movie.
Maybe I am doing something wrong?Is there another way?

change1
ahh i never thought about ppl using xmltv's they didn't generate... could be an issue... I'll come up with a way to toggle offsets
how are you using it with PTVL? did you write code? are you locally copying the file to your pc then using PTVL?

change2
there is a reason I disabled that action, you might experience random menu popups...

if all you want is subtitles you don't need to go through that menu... you can toggle it on and off with the subtitle key Smile if you want to download them set up that feature in xbmc settings... you prob never set the service up... once setup the toggle will trigger the service to download
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
(2014-09-23, 18:30)Lunatixz Wrote:
(2014-09-23, 18:11)tromy Wrote:
(2014-09-23, 14:48)Lunatixz Wrote: 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.

Change 1,I'll stick with that change until i can build a new script to get xmltv with UTC enabled.The xmltv I use now is "borrowed" from a greek plugin(thanks @Lambda81)

Change 2,I want to open the player menu because I want to download subs not just to turn them on/off.Let's say i use direct plugin channel and I want to see a movie but it has no subs then i open the player menu,download subs in my language and watch the movie.
Maybe I am doing something wrong?Is there another way?

change1
ahh i never thought about ppl using xmltv's they didn't generate... could be an issue... I'll come up with a way to toggle offsets
how are you using it with PTVL? did you write code? are you locally copying the file to your pc then using PTVL?

change2
there is a reason I disabled that action, you might experience random menu popups...

if all you want is subtitles you don't need to go through that menu... you can toggle it on and off with the subtitle key Smile if you want to download them set up that feature in xbmc settings... you prob never set the service up... once setup the toggle will trigger the service to download

Change 1
I don't write code neither copy something.The greek tv plugin downloads automatically, to it's folder, the xmltv every 3 days.All I do is to point to that folder from PLTV settings and force reset live channels every 3 days
(2014-09-23, 19:26)tromy Wrote:
(2014-09-23, 18:30)Lunatixz Wrote:
(2014-09-23, 18:11)tromy Wrote: Change 1,I'll stick with that change until i can build a new script to get xmltv with UTC enabled.The xmltv I use now is "borrowed" from a greek plugin(thanks @Lambda81)

Change 2,I want to open the player menu because I want to download subs not just to turn them on/off.Let's say i use direct plugin channel and I want to see a movie but it has no subs then i open the player menu,download subs in my language and watch the movie.
Maybe I am doing something wrong?Is there another way?

change1
ahh i never thought about ppl using xmltv's they didn't generate... could be an issue... I'll come up with a way to toggle offsets
how are you using it with PTVL? did you write code? are you locally copying the file to your pc then using PTVL?

change2
there is a reason I disabled that action, you might experience random menu popups...

if all you want is subtitles you don't need to go through that menu... you can toggle it on and off with the subtitle key Smile if you want to download them set up that feature in xbmc settings... you prob never set the service up... once setup the toggle will trigger the service to download

Change 1
I don't write code neither copy something.The greek tv plugin downloads automatically, to it's folder, the xmltv every 3 days.All I do is to point to that folder from PLTV settings and force reset live channels every 3 days

can you send me a copy to check out?

::FEEDBACK::

Anyone using the new HDhomerun UPNP Autotune? is it matching your channels with your xmltv file?
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
(2014-09-23, 19:40)Lunatixz Wrote:
(2014-09-23, 19:26)tromy Wrote:
(2014-09-23, 18:30)Lunatixz Wrote: change1
ahh i never thought about ppl using xmltv's they didn't generate... could be an issue... I'll come up with a way to toggle offsets
how are you using it with PTVL? did you write code? are you locally copying the file to your pc then using PTVL?

change2
there is a reason I disabled that action, you might experience random menu popups...

if all you want is subtitles you don't need to go through that menu... you can toggle it on and off with the subtitle key Smile if you want to download them set up that feature in xbmc settings... you prob never set the service up... once setup the toggle will trigger the service to download

Change 1
I don't write code neither copy something.The greek tv plugin downloads automatically, to it's folder, the xmltv every 3 days.All I do is to point to that folder from PLTV settings and force reset live channels every 3 days

can you send me a copy to check out?

::FEEDBACK::

Anyone using the new HDhomerun UPNP Autotune? is it matching your channels with your xmltv file?

xmltv:
https://www.dropbox.com/s/l7v2x1wxr269t5...v.xml?dl=0
(2014-09-23, 19:40)Lunatixz Wrote: Anyone using the new HDhomerun UPNP Autotune? is it matching your channels with your xmltv file?

Some channels. Out of 40 something channels for me it only matches 6. Big Grin
(2014-09-23, 20:24)breezytm Wrote:
(2014-09-23, 19:40)Lunatixz Wrote: Anyone using the new HDhomerun UPNP Autotune? is it matching your channels with your xmltv file?

Some channels. Out of 40 something channels for me it only matches 6. Big Grin

your log had no references to upnp autotune, after enabling debug in xbmc you need to run autotune again Smile
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
(2014-09-23, 20:32)Lunatixz Wrote: your log had no references to upnp autotune, after enabling debug in xbmc you need to run autotune again Smile

The log I sent you were from my fire tv. I attached two log files. One for the official xbmc built and one from spmc. They are labelled as such. I was not able to gather any channels from pseudotv live install on the fire tv.

On my windows 7 xmbc setup however it did work. It works just fine. It simply matched 6 channels as I mentioned. If you like I can delete my xbmc folder in windows and start from scratch with the debug logging enabled. That should get you the info you need.
I know I asked about this a few times but i got the super favorite working thru the pseudoTv live configuration but its not recogonizing the channels on the ep guide channel, half the channel are missing. Can someone please help me.Sad Here is the log:

Your debug xbmc.log: http://xbmclogs.com/show.php?id=301425
Your XBMC crashlog: http://xbmclogs.com/show.php?id=301434
I was playing with the BCT's and have run into a slight problem. If I change the the number of B, C, or T's that play I lose the option to set it back to "auto" so now I only have 1-5 for each of them. It's no problem, but I like how you worked it to fill in the extra time after a show and would like to get that benefit back. Is there something I can do to fix this (I hope)?
(2014-09-23, 21:17)Antisthenes Wrote: I was playing with the BCT's and have run into a slight problem. If I change the the number of B, C, or T's that play I lose the option to set it back to "auto" so now I only have 1-5 for each of them. It's no problem, but I like how you worked it to fill in the extra time after a show and would like to get that benefit back. Is there something I can do to fix this (I hope)?

Auto was removed a long time ago. What version are you using?
Image Lunatixz - Kodi / Beta repository
Image PseudoTV - Forum | Website | Youtube | Help?
0.5.0...it was on auto in the previous version(I'm not sure which one I had before this one)...and I was just playing with it and changed the number and auto wasn't a choice anymore. No problems though if it's not a feature anymore then that's cool.
  • 1
  • 417
  • 418
  • 419(current)
  • 420
  • 421
  • 694

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