Release TV Guide - with XMLTV and streaming support - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151) +---- Thread: Release TV Guide - with XMLTV and streaming support (/showthread.php?tid=120377) |
RE: [RELEASE] TV Guide - with XMLTV and streaming support - patria o muerte - 2013-11-06 (2013-11-04, 20:47)DixieDean Wrote: Just to add to this advice... if you paste the following lines into the addons.ini file the USTVNOW Addon will show up under Addons in the Choose Stream window. So no need to make .strm files. Awesome! Do you think i can do the same with Livestreams addon? I currently use a url database as source which channels are separated in subcategories. Thanks. RE: [RELEASE] TV Guide - with XMLTV and streaming support - DixieDean - 2013-11-06 It all depends on how the streams work and how the addon is written. And I've never used that one. Where would I get it from? And I'll take a look. Cheers Rich RE: [RELEASE] TV Guide - with XMLTV and streaming support - patria o muerte - 2013-11-12 Hi Dixiedean, i sent you a pm about that. Thanks RE: [RELEASE] TV Guide - with XMLTV and streaming support - insanerc - 2013-11-12 I keep loosing my 'hidden channels' configuration. Can I grab the save files from another computer and put on this one? If so where? RE: [RELEASE] TV Guide - with XMLTV and streaming support - ProsjektX - 2013-11-18 (2013-09-17, 14:40)laconical Wrote: For anyone who wants the TV Guide addon to apply the timezone information that is included in their xmltv files, here is how I did it. Keep in mind that I am an absolute python novice and this is the first code I've written in this language. Also note that I have only tested this with an Australian xmltv file (+1000) but it should theoretically work for any timezone offset.I guess this will only work if you're on UTC/GMT+0, or in the UK. This cannot work unless you know which timezone the user is located in, and calculate offsets from that. Anyone who knows how to change that...? Cause this would be very useful RE: [RELEASE] TV Guide - with XMLTV and streaming support - patria o muerte - 2013-11-19 (2013-11-06, 18:41)patria o muerte Wrote:(2013-11-04, 20:47)DixieDean Wrote: Just to add to this advice... if you paste the following lines into the addons.ini file the USTVNOW Addon will show up under Addons in the Choose Stream window. So no need to make .strm files. Anyone can help me please? RE: [RELEASE] TV Guide - with XMLTV and streaming support - pgawronski - 2013-11-24 Hi guys, Im new there, I was just trying to do some sort of mod for tvguide, I would like to make a Channels logos clicable, is there any chance to do it? Im sitting on the front of the code 4 days now, cant find it. I mightbe blind. second think is that Im trying to do shortcut list for chanels so U can pick your chanel from the list on the top of the sceen. Done this but got just a "TEXT" channels names and I would prefer logos again cant find it. Any chance that you can navigate me to the code that Im looking for? This is how does it looks at the moment. It is all in Polish so sorry Obviously Im gonna try to do this list on the top of the screen to show/hide on click Buton U on keyboard or there is acces to it on the bottom of the submenu "C" Thanks RE: [RELEASE] TV Guide - with XMLTV and streaming support - Laser78 - 2013-12-01 Anyone know how to do it with Livestreams ? RE: [RELEASE] TV Guide - with XMLTV and streaming support - DixieDean - 2013-12-01 The way to get a Livestreams stream into the TV Guide is to add it to your favourites and then allocate that favourite to a channel in your TV Guide. Re: RE: [RELEASE] TV Guide - with XMLTV and streaming support - Laser78 - 2013-12-01 I know, but the wrong of this option is that if the link changes favorite saying this to be added does not recognize it. I found another option by editing the "addon.ini" file but it has to do the same, when the link changes need to edit the file. RE: [RELEASE] TV Guide - with XMLTV and streaming support - DixieDean - 2013-12-01 Well that's to do with the hoster of the stream... there's no 'dynamic' way to do that as far as I know in TV Guide. I do the same as you (put the stream url into addons.ini) Having said that, I am trying to work out a method where TV Guide could parse a xml playlist as a url or a file (like LiveStreams does). And then have a way to link to a channel in the EPG. Even then I feel if the stream url changes (or dies) you would still need to do some editing. It's all just a theory at the moment. lol Cheers Rich RE: [RELEASE] TV Guide - with XMLTV and streaming support - chris0147 - 2013-12-01 Does anyone know how I can remove the borders in the tvguide script, but I don't know where to find them. Here's the screenshot: Can you please tell me where I should find them to remove it? Do you know how I can use my own background instead of using tvguide-program-grey.png? Do you know how I can add the main menu in the tvguide script like this? How I can set the tv description to the top instead of bottom? I want to make the tvguide looks like this: When I select on per programme, do you know where I can find in the script that I can stop the background from changing when I select on per programme as I want to use it as defeat background? And when I select on the channel, I want to play the live stream where the programme image are in the small box. Do you know? How I can remove the logo to be replace with channels text? Cheers RE: [RELEASE] TV Guide - with XMLTV and streaming support - wingett - 2013-12-02 (2013-11-18, 11:17)ProsjektX Wrote:(2013-09-17, 14:40)laconical Wrote: For anyone who wants the TV Guide addon to apply the timezone information that is included in their xmltv files, here is how I did it. Keep in mind that I am an absolute python novice and this is the first code I've written in this language. Also note that I have only tested this with an Australian xmltv file (+1000) but it should theoretically work for any timezone offset.I guess this will only work if you're on UTC/GMT+0, or in the UK. This cannot work unless you know which timezone the user is located in, and calculate offsets from that. Anyone who knows how to change that...? Cause this would be very useful Hi, I am also a complete beginner at Python, but have got this working by changing the grabber (/usr/bin/tv_grab_uk_rt) instead. Adding in the following code in the grabber, solves the problem as the XMLTV file is then already in your local timezone: $start_dt->set_time_zone( 'local' ); I did this for the Radio Times grabber, and put it immediately after the piece of code that determines the start time with the correct UTC offset. So I have: # Determine start time with correct UTC offset my $start_dt = DateTime->new( year => $yyyy, month => $mm, day => $dd, hour => $start_hr, minute => $start_mn, second => 0, time_zone => $tz, ); $start_dt->set_time_zone( 'local' ); That allows the TVGuide to pick up the correct time for your box. Not sure how this would work in Windows though? RE: [RELEASE] TV Guide - with XMLTV and streaming support - thatguy7669 - 2013-12-03 (2013-12-01, 16:49)DixieDean Wrote: Well that's to do with the hoster of the stream... there's no 'dynamic' way to do that as far as I know in TV Guide. one possible option might be to check out some of the sports-tv addons. alot of them have modules for streaming sites like ilive.to and others. just do the same as you do with ustvnow and add the respective plugin://-links. as long as the initial link doesn't change, you might have luck. RE: [RELEASE] TV Guide - with XMLTV and streaming support - NewJerseyNinja - 2013-12-11 Hello Again, I've been using this addon for a while (V2.0.5) and it works great with the Gotham nightlies so far. A major issue for me is that I'm using an HDHomeRun Prime and TVGuide will force my Mythtv Backend to stop recording when I use TVGuide to tune a channel. Is there a way to set a tuner preference in TVGuide, or is this a function of the HDHomeRun live streaming server to always use the lowest number tuner available (tuner0) ? |