• 1
  • 57
  • 58
  • 59(current)
  • 60
  • 61
  • 65
Supert tv heeeeelp!
(2012-05-07, 15:41)RustyTheCat Wrote: look under Programs, and, install Nito-x (also under Programs), SuperTV will work much easier going through it, vs. as a standalone

Thanks for the suggestion of installing nav-x, video addons do seem to run much better through it. I have a noob question, though: because super tv is listed as a program addon, it doesn't show up on my list of video sources in nav-x. How do I run it then? Many thanks for any help.
Reply
go to Navi-x Media Portal to Networks to Live TV, it's in there.
Reply
The thing about using SuperTV via Navi-x is that it loads the xml files from an external server. So you will not be able to see your own custom xml files. Or am I wrong here?
HTPC Server - Windows 8.1 + XBMC Helix | Intel QuadCore, 4GB RAM, 4 TB SATA
Intel NUC D54250WYK - Windows 8.1 + XBMC Helix | Logitech Harmony 750
Samsung UE8005 | Bluetooth keyboard & mousepad
Reply
(2012-05-07, 23:54)crawl Wrote: Fix for rtmpGUI+

Navigate to ~/XBMC/addons/plugin.video.rtmpGUIplus/

Edit default.py file by replacing

this:

('http://ioslivetv.com/xml/USA.xml','United States'),

with this:

('https://raw.github.com/HansMayerXBMC/SuperTV/master/resources/xml/USA.xml','United States'),

Repeat for each country list you want. Do not change the address for the rtmpGUI list or Blackworm's list.

What "issue" does this fix? Updated channel list so channels start working again?

As a side note, on ATV2, the file is located here: /private/var/mobile/Library/Preferences/XBMC/addons/plugin.video.rtmpGUIplus/default.py
and the Italian RAI channels still don't work...

Reply
to anyone looking to get rtmpgui+ up and running again simply copy the default.py from your supertv folder and replace the 1 thats in the folder of your rtmpgui+ folder works perfectly with the tv guide of rtmpgui+ hope this helps
Reply
(2012-05-07, 23:54)crawl Wrote: Fix for rtmpGUI+

Navigate to ~/XBMC/addons/plugin.video.rtmpGUIplus/

Edit default.py file by replacing

this:

('http://ioslivetv.com/xml/USA.xml','United States'),

with this:

('https://raw.github.com/HansMayerXBMC/SuperTV/master/resources/xml/USA.xml','United States'),

Repeat for each country list you want. Do not change the address for the rtmpGUI list or Blackworm's list.

Thanks a lot! But I can't find that folder, what am I doing wrong?
Reply
(2012-05-08, 14:52)bixxius Wrote:
(2012-05-07, 23:54)crawl Wrote: Fix for rtmpGUI+

Navigate to ~/XBMC/addons/plugin.video.rtmpGUIplus/

Edit default.py file by replacing

this:

('http://ioslivetv.com/xml/USA.xml','United States'),

with this:

('https://raw.github.com/HansMayerXBMC/SuperTV/master/resources/xml/USA.xml','United States'),

Repeat for each country list you want. Do not change the address for the rtmpGUI list or Blackworm's list.

Thanks a lot! But I can't find that folder, what am I doing wrong?

Full path is /private/var/mobile/Library/Preferences/XBMC/addons/plugin.video.rtmpGUIplus/
Reply
Note that this fix is just for the xml link, the channels have problem themselves...at least for me most of the US channels are no longer work.
Not sure who maintain the xml list. Hopefully that person will take a look at the xml soon.
Reply
Cant seem to get the uk listings up. There a problem or is it just me?
Cant get most of the adult channels working in 18+. Have they gone for good? HELP!!!!!
Reply
(2012-05-07, 22:47)mikles Wrote:
(2012-05-07, 20:37)Maniac Wrote: So is the "whatsonindia" codeword integrated into the SuperTV addin or is it just looking up a url similar to whatsonindia?
How would one for instance use epg from the follwing site http://mojtv.hr/m2/tv-program/default.aspx?id=10

Or perhaps http://tvprofil.net/xmltv/

Use the latter and choose the "daily" file.
If you know python or have a basic knowledge of scripting languages, edit the epg.py file inside supertv's installation folder and write a new class similar to the ones who are declared as "class BlablablaEPG(XMLTVEPG)".
Thank you!
Well I have no experiance with python but I am a programmer in .net (C#).

I have come some way in creating a separate class for the epg, but I am having issues with the self.parseTree(b,au) part.

This is the log:
Code:
23:50:06 T:805257216   ERROR: self.parseTree(b,au)
23:50:06 T:805257216   ERROR:   File "/var/mobile/Library/Preferences/XBMC/addons/SuperTV/resources/lib/epg.py", line 1022, in parseTree
23:50:06 T:805257216   ERROR: minutes = (int(l.attrib.get('stop').split(' ')[1][-2:])+(int(l.attrib.get('stop').split(' ')[1][1:-2])*60))*(int(l.attrib.get('stop').split(' ')[1][0]+'1'))
23:50:06 T:805257216   ERROR: IndexError
23:50:06 T:805257216   ERROR: :
23:50:06 T:805257216   ERROR: list index out of range

Obviously it is trying to get an index from the .split(' ') that does not exist. This is the xml that I am trying to parse: http://tvprofil.net/xmltv/data/bht1.ba/2...il.net.xml
In the Start\Stop values there is no space, so it would fail here.

Can someone just explain to me the following lines of codes, what is it trying to do here and why? How can I modify this so that my solution would work.
Code:
minutes = (int(l.attrib.get('stop').split(' ')[1][-2:])+(int(l.attrib.get('stop').split(' ')[1][1:-2])*60))*(int(l.attrib.get('stop').split(' ')[1][0]+'1'))
tzEnd = USTimeZone.FixedOffset(minutes,'XML')
end=datetime.fromtimestamp(time.mktime(time.strptime(l.attrib.get('stop').split(' ')[0], "%Y%m%d%H%M%S"))).replace(tzinfo=tzEnd).astimezone(LocalTimezone)
if end < nowDateTime:
   continue

minutes = (int(l.attrib.get('start').split(' ')[1][-2:])+(int(l.attrib.get('start').split(' ')[1][1:-2])*60))*(int(l.attrib.get('start').split(' ')[1][0]+'1'))
tzStart = USTimeZone.FixedOffset(minutes,'XML')
start=datetime.fromtimestamp(time.mktime(time.strptime(l.attrib.get('start').split(' ')[0], "%Y%m%d%H%M%S"))).replace(tzinfo=tzStart).astimezone(LocalTimezone)

Thanks in advance
HTPC Server - Windows 8.1 + XBMC Helix | Intel QuadCore, 4GB RAM, 4 TB SATA
Intel NUC D54250WYK - Windows 8.1 + XBMC Helix | Logitech Harmony 750
Samsung UE8005 | Bluetooth keyboard & mousepad
Reply
^^^
Maniac, your questions may get better responses in the Dev section on this site. More technically inclined users!
Reply
is it just me, or have the eurosport hd in the uk streams stopped working?
Reply
(2012-05-09, 13:53)Sdpbc Wrote: Maniac, your questions may get better responses in the Dev section on this site. More technically inclined users!

True that, but I have solved the problem Smile


(2012-05-07, 22:47)mikles Wrote: Use the latter and choose the "daily" file.
If you know python or have a basic knowledge of scripting languages, edit the epg.py file inside supertv's installation folder and write a new class similar to the ones who are declared as "class BlablablaEPG(XMLTVEPG)".

Thanks to mikles for pointing me in the right direction from the begining Smile I now have a fully working EPG for EX-YU channels, working perfectly.
HTPC Server - Windows 8.1 + XBMC Helix | Intel QuadCore, 4GB RAM, 4 TB SATA
Intel NUC D54250WYK - Windows 8.1 + XBMC Helix | Logitech Harmony 750
Samsung UE8005 | Bluetooth keyboard & mousepad
Reply
Italian channels, american channels most of them do not WORK anymore Plessers do something! Thnx!
I ment please
Reply
(2012-05-09, 21:51)Maniac Wrote: Thanks to mikles for pointing me in the right direction from the begining Smile I now have a fully working EPG for EX-YU channels, working perfectly.

Glad to be of help. Smile

But please share the relevant code snippet with the community.
Reply
  • 1
  • 57
  • 58
  • 59(current)
  • 60
  • 61
  • 65

Logout Mark Read Team Forum Stats Members Help
Supert tv heeeeelp!13