![]() |
|
[dev] CetonTV+HDHomeRun - Watch TV on XBMC (WIN/OSX) - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Development (/forumdisplay.php?fid=32) +--- Forum: Python Add-on Development (/forumdisplay.php?fid=26) +--- Thread: [dev] CetonTV+HDHomeRun - Watch TV on XBMC (WIN/OSX) (/showthread.php?tid=119865) Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
RE: [dev] CetonTV - Watch TV on XBMC - europorsche914 - 2012-03-14 04:26 (2012-03-14 00:42)mcheng89 Wrote:(2012-03-13 04:37)Lunatixz Wrote: Any luck with hdhomerun dual? if you need me to test any builds let me know I like! BTW: I never got the logomapper to work correctly not sure whats up with it but I thought about converting my javascript script to .net framework program so it runs a little more efficiently RE: [dev] CetonTV - Watch TV on XBMC - mcheng89 - 2012-03-14 04:33 (2012-03-14 04:26)europorsche914 Wrote: I like! I'll send you source for logomapper if you want to take a look... (the xerces library is 53mb...) .net program would be good too ![]() Maybe I'm doing something wrong.... Im guessing you see alot of output when you run the program right? Each line of output looks for these files: C:\ProgramData\MyChannelLogos\Logos\Color\ + (filename from logo.xml) + _c.png C:\ProgramData\MyChannelLogos\Logos\Color\ + (filename from logo.xml) + .png Then renames them to channel name in the channelmap.csv and copies it to logos folder The reFocus skin looks a bit nicer :
RE: [dev] CetonTV - Watch TV on XBMC - europorsche914 - 2012-03-14 05:17 (2012-03-14 04:33)mcheng89 Wrote:(2012-03-14 04:26)europorsche914 Wrote: I like! I am seeing a lot of output in the command window but no logos are copied. The logos.xml has the logo filename for the color (cfilename) and bw (wfilename) listed for each channel, provided an image exists in Logos/Color and Logos/BW respectively but otherwise the syntax your using looks correct. ![]() Also this method will not map the affiliates for local channels, and the annoying thing is the affiliate name is found sometimes as the 3rd display name in the xmltv.xml and sometimes its the 4th, my javascript code does this but until its in a faster language its useless... EDIT: hold on a sec I might see my issue. Found my issue the logo path was somehow named Logo not Logos doh! RE: [dev] CetonTV - Watch TV on XBMC - mcheng89 - 2012-03-14 05:28 (2012-03-14 05:17)europorsche914 Wrote: I am seeing a lot of output in the command window but no logos are copied. The logos.xml has the logo filename for the color (cfilename) and bw (wfilename) listed for each channel, provided an image exists in Logos/Color and Logos/BW respectively but otherwise the syntax your using looks correct. oh thats what the cfilename and wfilename refer to... I'll fix that tomorrow and I'll take a look at the affiliates RE: [dev] CetonTV - Watch TV on XBMC - europorsche914 - 2012-03-14 05:52 (2012-03-14 05:28)mcheng89 Wrote:(2012-03-14 05:17)europorsche914 Wrote: I am seeing a lot of output in the command window but no logos are copied. The logos.xml has the logo filename for the color (cfilename) and bw (wfilename) listed for each channel, provided an image exists in Logos/Color and Logos/BW respectively but otherwise the syntax your using looks correct. Im modifiying the webgui to use the new logo mapper logo names, we will need to make the logo folder accessible to the http server. RE: [dev] CetonTV - Watch TV on XBMC - mcheng89 - 2012-03-14 06:13 (2012-03-14 05:52)europorsche914 Wrote: Im modifiying the webgui to use the new logo mapper logo names, we will need to make the logo folder accessible to the http server. maybe we should create the logos directory under webfiles. also, maybe it would make more sense to rename to the channel number instead of name? that way we can easily get a channel logo without having to know the name... todo tomorrow: logomapper - cfilename wfilenane affiliates logo API/webfiles logo dir? finish up xbmc pvr (channels,epg,live tv) RE: [dev] CetonTV - Watch TV on XBMC - jdembski - 2012-03-14 19:38 @mcheng89: Could you share your bit of code where you transfer the EPG entries to XBMC? I think you know why this is interesting for me
RE: [dev] CetonTV - Watch TV on XBMC - mcheng89 - 2012-03-15 00:20 (2012-03-14 19:38)jdembski Wrote: @mcheng89: Heres the epg part: Let me know if you need more, or if you want I can send you the whole program. I'm still working on it... Code: int GetEPGDataForChannel(PVR_HANDLE handle, int channel, time_t iStart, time_t iEnd) {EDIT: logomapper v2 http://www.mediafire.com/?v2pewj4yhcfc51b Will finish up XBMC pvr tomorrow... RE: [dev] CetonTV - Watch TV on XBMC - paulwong92 - 2012-03-16 02:58 First of all, great work guys! Yall are doing some amazing things. I just had a few questions. I got everything pretty much working, but the Web streaming will not work for me. I have VLC 2.0 and the plugins installed. I see the vlc player, but when I go to click on a channel nothing happens. My second question is what is the logomapper for? Is it just for the web UI? I set it up for the web UI but it just gets stuck step 2 out of 3. I let it sit there for about a hour and nothing. When I go to install it though it does say Error opening xmltv.xml. Thanks in advance guys! I can't wait to see how far this goes! RE: [dev] CetonTV - Watch TV on XBMC - mcheng89 - 2012-03-16 03:58 (2012-03-16 02:58)paulwong92 Wrote: First of all, great work guys! Yall are doing some amazing things. I just had a few questions. I got everything pretty much working, but the Web streaming will not work for me. I have VLC 2.0 and the plugins installed. I see the vlc player, but when I go to click on a channel nothing happens. My second question is what is the logomapper for? Is it just for the web UI? I set it up for the web UI but it just gets stuck step 2 out of 3. I let it sit there for about a hour and nothing. When I go to install it though it does say Error opening xmltv.xml. Thanks in advance guys! I can't wait to see how far this goes! The web player broke with security. If you disable security, it should work. logomapper will be used in apps that want to show a logo for the channel. the logomapper requires mc2xml (epg data) to work It's not used right now, but I think the web app is being updated to use those logos. What works: XBMC, iOS/Android Needs updating: Web interface |