NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 40 41 42 43 44 … 93 Next »
Yahoo Go TV to XMLTV (via API)

 
  • 0 Vote(s) - 0 Average
Yahoo Go TV to XMLTV (via API)
-Oz-
Offline

Posting Freak

Posts: 803
Threads: 33
Joined: Aug 2006
#171
2007-08-23, 10:32 PM
got your PM I'll be replying soon.

Let me know about the IDs because I'm kinda sick of this channel issue too. They're not even in order because mine is supposed to catch all of them that are next to each other.
Dan Blomberg
[SIZE="1"]HTPC 1: MSI K8NGM2-FID, AMD 64 3000+, WD 200gb HDD, 1gb ram, NSK2400, PVR-500, Harmony 659
HTPC 2: ASUS M2NPV-VM, AMD 64 3200+, WD 250gb HDD, 1gb ram, nVidia DualTV MCE, NSK2400, Harmony 720
HTPC 3: GIGABYTE GA-E7AUM-DS2H GeForce 9400, Intel E5200 Wolfdale, WD 640gb HDD, 4gb ram, Antec Fusion 2, HVR-1600, hdhomerun, Harmony 880, PCH A-110
GBPVR 1.4.7 Additions: Weather2, UltraXMLTV, Comskip
Project: Setup Logitech Harmony Remote[/SIZE]
whurlston
Offline

Posting Freak

Posts: 7,885
Threads: 102
Joined: Nov 2006
#172
2007-08-23, 11:44 PM
It didn't work. It would be fine for channels received on digital tuners but not analog.
-Oz-
Offline

Posting Freak

Posts: 803
Threads: 33
Joined: Aug 2006
#173
2007-08-24, 01:22 AM
whurlston Wrote:It didn't work. It would be fine for channels received on digital tuners but not analog.
I think I'll have to load all the channels into an array and then just add a -1 or -2 to the channels. How would that affect analog listings versus digital, any idea?

For the working version I have right now which I'll probably release in a little bit I've added more advanced downloading (retries and all) so hopefully that'll get rid of the crashes. A few other internal tweaks too.
Dan Blomberg
[SIZE="1"]HTPC 1: MSI K8NGM2-FID, AMD 64 3000+, WD 200gb HDD, 1gb ram, NSK2400, PVR-500, Harmony 659
HTPC 2: ASUS M2NPV-VM, AMD 64 3200+, WD 250gb HDD, 1gb ram, nVidia DualTV MCE, NSK2400, Harmony 720
HTPC 3: GIGABYTE GA-E7AUM-DS2H GeForce 9400, Intel E5200 Wolfdale, WD 640gb HDD, 4gb ram, Antec Fusion 2, HVR-1600, hdhomerun, Harmony 880, PCH A-110
GBPVR 1.4.7 Additions: Weather2, UltraXMLTV, Comskip
Project: Setup Logitech Harmony Remote[/SIZE]
whurlston
Offline

Posting Freak

Posts: 7,885
Threads: 102
Joined: Nov 2006
#174
2007-08-24, 01:59 AM (This post was last modified: 2007-08-24, 02:07 AM by whurlston.)
For digital channels, we can use pretty much anything we want for the ID. The problem is the analogs. The ID is used for the channel tuning. If the ID is "0013", GBPVR tunes it to channel 13. If we use a non-integer for the ID like "0013.blah" GB-PVR imports it but it assigns all the channels with channel numbers starting with 1 and increments them by one. So if you have channels 0002.blah, 0003.blah, 0004.blah, and 0008.blah, GB-PVR will try to tune them on channels 2, 3, 4 and 5. Once you skip a number, the tuning is all messed up.

Digitals don't matter because they get remapped anyway.
whurlston
Offline

Posting Freak

Posts: 7,885
Threads: 102
Joined: Nov 2006
#175
2007-08-24, 02:58 AM
Ran another test. Your idea to add the -1, -2 was genius.

I used dotted notation instead of dashed but if you have two channel 15s and you put the ID for the first one as "0015" and the second as "0015.1", the first one gets added with the proper tuning. The second gets appended to the end of your channel list when gbpvr imports it.

Code:
<channel id="0003">
  <display-name>3 WAVE</display-name>
</channel>
<channel id="0004">
  <display-name>4 WKKQ</display-name>
</channel>
<channel id="0015">
  <display-name>15 WHAS</display-name>
</channel>
<channel id="0015.1">
  <display-name>15 WKPC</display-name>
</channel>
<channel id="0027">
  <display-name>27 WTTY</display-name>
</channel>

would end up being added as:

3 WAVE - tune channel: 3
4 WKQQ - tune channel: 4
15 WHAS - tune channel: 15
27 WTTY - tune channel: 27
15 WKPC - tune channel: 28

So only the duplicates would have the wrong tuning and they can be edited in GB-PVR Config.
-Oz-
Offline

Posting Freak

Posts: 803
Threads: 33
Joined: Aug 2006
#176
2007-08-24, 03:07 AM
I'll have to implement the dashes or something. What i did for the version I just released a minute ago is make sure all duplicate channels were unselected (i think) by tracking them with a string file rather than just checking the channel above.


Also added logging so everyone please attach your logs.

From 1.1.1 to 1.1.4

* Added logging in the yapi2xml folder called “yapi2xml_log.txt”
* Advanced file handling so you can have text files in the yapi2xml directory now (just not any of the schedules)
* More error trapping (ref)
* Added 5 second delay and then 5 tries to download the schedule file to prevent bad downloads and nasty errors
* Added more duplicate channels support, currently all duplicates unchecked; listed in the log
Dan Blomberg
[SIZE="1"]HTPC 1: MSI K8NGM2-FID, AMD 64 3000+, WD 200gb HDD, 1gb ram, NSK2400, PVR-500, Harmony 659
HTPC 2: ASUS M2NPV-VM, AMD 64 3200+, WD 250gb HDD, 1gb ram, nVidia DualTV MCE, NSK2400, Harmony 720
HTPC 3: GIGABYTE GA-E7AUM-DS2H GeForce 9400, Intel E5200 Wolfdale, WD 640gb HDD, 4gb ram, Antec Fusion 2, HVR-1600, hdhomerun, Harmony 880, PCH A-110
GBPVR 1.4.7 Additions: Weather2, UltraXMLTV, Comskip
Project: Setup Logitech Harmony Remote[/SIZE]
whurlston
Offline

Posting Freak

Posts: 7,885
Threads: 102
Joined: Nov 2006
#177
2007-08-24, 03:31 AM
I think that rather than run a bunch of cyclic checks for .1, .2, etc, I'm just going to do a simple if Channelumber already exists, ID = ChannelNumber.CallSign
Bondja
Offline

Junior Member

Posts: 13
Threads: 0
Joined: Aug 2007
#178
2007-08-24, 01:34 PM (This post was last modified: 2007-08-24, 01:45 PM by Bondja.)
Big Grin Whurlston and OZ:

Great news!!! The latest version works...I now have all my listings and channels. Great Job...Thank you. Big Grin
-Oz-
Offline

Posting Freak

Posts: 803
Threads: 33
Joined: Aug 2006
#179
2007-08-24, 02:49 PM
Bondja Wrote:Big Grin Whurlston and OZ:

Great news!!! The latest version works...I now have all my listings and channels. Great Job...Thank you. Big Grin

Excellent, glad to hear its working for you.
Dan Blomberg
[SIZE="1"]HTPC 1: MSI K8NGM2-FID, AMD 64 3000+, WD 200gb HDD, 1gb ram, NSK2400, PVR-500, Harmony 659
HTPC 2: ASUS M2NPV-VM, AMD 64 3200+, WD 250gb HDD, 1gb ram, nVidia DualTV MCE, NSK2400, Harmony 720
HTPC 3: GIGABYTE GA-E7AUM-DS2H GeForce 9400, Intel E5200 Wolfdale, WD 640gb HDD, 4gb ram, Antec Fusion 2, HVR-1600, hdhomerun, Harmony 880, PCH A-110
GBPVR 1.4.7 Additions: Weather2, UltraXMLTV, Comskip
Project: Setup Logitech Harmony Remote[/SIZE]
dennit
Offline

Posting Freak

Posts: 788
Threads: 43
Joined: Aug 2007
#180
2007-08-24, 03:14 PM
Schedules Direct has some info relating to differences between SD data and DD data. The two items mentioned were a repeat flag and a schedules program id field expanded to 14 characters from 12. Any thoughts on whether YApi2XML be trying to match the original DD data format or the SD format?
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (22): « Previous 1 … 16 17 18 19 20 … 22 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to extract M3U8 and get matching XMLTV guide data from NPVR almightyj 0 3,443 2018-10-23, 07:24 AM
Last Post: almightyj
  XMLTV Channel Number Option gdogg371 12 6,793 2018-07-18, 04:32 PM
Last Post: sub
  Merge xmltv data with xslt Graham 4 3,472 2014-01-02, 12:45 PM
Last Post: Graham
  XMLTV data mvallevand 6 2,638 2011-04-16, 03:08 AM
Last Post: sub
  Free XMLTV EPG scraper dneprrider 214 99,964 2010-03-29, 04:54 AM
Last Post: dljones8053
  XmlTv Structure psycik 2 2,218 2008-12-29, 10:53 PM
Last Post: psycik
  Content Provider: How to publish XMLTV data? skoka123 6 3,446 2008-09-03, 05:48 AM
Last Post: skoka123
  XMLTV Questions -Oz- 34 10,462 2008-03-24, 01:19 AM
Last Post: zehd
  New XMLTV Enhancer and more... zehd 388 89,258 2008-03-05, 07:45 PM
Last Post: zehd
  I-xmltv updated for YahooXMLTv (adds a new show marker and more) Jim_ 78 24,757 2008-01-02, 10:33 AM
Last Post: tvshowman

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode