![]() |
|
[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 |
- mcheng89 - 2012-02-19 18:42 uspino Wrote:OK, this is starting to be ridiculously convenient. Actually GoodPlayer is *almost* able to play the HD direct stream from remoteCeton. Can you imagine how is it going to look on the retina-display, quad-core iPad 3? Just tried it on Buzz Player (iPad 1!) and works great! at 720, 1000kbps. I wonder what else we can get this running on ![]() Edit: Maybe PS3 with UPnP?? - europorsche914 - 2012-02-19 19:22 Now I have noticed something that may require some attention in the future. Whenever playing in xbmc you will notice horizontal lines during action scenes (the screen shot on the first post highlights the issue). This is caused by the video stream being interlaced. In plugin versions prior to v1.6.3 the dvd player in xbmc handled all processing of the video (i havent upgraded to v1.6.3 so I can not speak as to whether the issue still exists now that the stream is h264..), maybe some flag must be thrown to deinterlace the incoming video stream on the client pc? When I view the stream in vlc (on client pc) and turn on deinterlacing, the picture quality vastly improves. - LehighBri - 2012-02-19 19:24 1.6.3's new transcoding works fantastic on my apple tv 2! I can now watch HD channels with smooth playback! (I use 720 output and low quality) While we're talking about apple tv 2, any thoughts on where getting to handling apple tv 2 commands is on the priority list? e.g. I'd like to be able to hit the menu button and have it function the same way as if I hit ESC on my xbmc client PC. The only way for me to stop a stream is to completely reset the apple tv 2 which is getting quite frustrating - mcheng89 - 2012-02-19 19:25 europorsche914 Wrote:Now I have noticed something that may require some attention in the future. Whenever playing in xbmc you will notice horizontal lines during action scenes (the screen shot on the first post highlights the issue). This is caused by the video stream being interlaced. In plugin versions prior to v1.6.3 the dvd player in xbmc handled all processing of the video (i havent upgraded to v1.6.3 so I can not speak as to whether the issue still exists now that the stream is h264..), maybe some flag must be thrown to deinterlace the incoming video stream on the client pc? When I view the stream in vlc (on client pc) and turn on deinterlacing, the picture quality vastly improves. I'll take a look. Deinterlacing doesnt look like it takes much cpu, so maybe I might just do it in vlc? There is a way to change the setting in XBMC. have to find out if theres a way to do it in from the plugin... LehighBri Wrote:1.6.3's new transcoding works fantastic on my apple tv 2! I can now watch HD channels with smooth playback! (I use 720 output and low quality) If you have time now, we can do that now. I might need your help in getting some logs. Give me a few minutes and I'll tell you what to look for. EDIT: Ok can you spam the button a few times for each button (Remember the order that you pressed those buttons ) that you want implemented and then send me a copy of the log.The buttons ids get outputted to the log: self.log('onAction ' + str(action)) From the wiki: http://wiki.xbmc.org/index.php?title=Global_Apple_Remote It looks like menu is 6 on apple tv... but 6 is also page down on the pc? EDIT2: Let me know how this works for you: http://www.mediafire.com/?wbl7b9i1d291mcz - uspino - 2012-02-19 19:44 mcheng89 Wrote:Just tried it on Buzz Player (iPad 1!) and works great! at 720, 1000kbps. You can use any DLNA device: it works fine on PS3, Samsung TV, WDTV Live... Quote:Now I have noticed something that may require some attention in the future. Whenever playing in xbmc you will notice horizontal lines during action scenes (the screen shot on the first post highlights the issue). This is caused by the video stream being interlaced. In plugin versions prior to v1.6.3 the dvd player in xbmc handled all processing of the video (i havent upgraded to v1.6.3 so I can not speak as to whether the issue still exists now that the stream is h264..), maybe some flag must be thrown to deinterlace the incoming video stream on the client pc? When I view the stream in vlc (on client pc) and turn on deinterlacing, the picture quality vastly improves. You are absolutely right here. - LehighBri - 2012-02-19 19:49 mcheng89 Wrote:I'll take a look. Deinterlacing doesnt look like it takes much cpu, so maybe I might just do it in vlc?Sure... I'll test this shortly. - LehighBri - 2012-02-19 20:00 mcheng89 Wrote:EDIT: Ok can you spam the button a few times for each button (Remember the order that you pressed those buttons No luck. Here's my xbmc.log from the apple tv2 when I click menu a ton of times. http://pastebin.com/XYV6NqsU I don't see any "onAction" output in the log file but you can see that the transcoding works great. Is that logging not getting called for some reason? - LehighBri - 2012-02-19 20:02 PS... did I send you the wrong .log file? In looking at your code, the "print" statements go into the xbmc.log that I sent you just fine... but you're using "self.log". Where does that get output to? And why are you using self.log for onAction output instead of "print"? - mcheng89 - 2012-02-19 20:04 LehighBri Wrote:PS... did I send you the wrong .log file? In looking at your code, the "print" statements go into the xbmc.log that I sent you just fine... but you're using "self.log". Where does that get output to? And why are you using self.log for onAction output instead of "print"? not sure. maybe switch it to print if you can. I'll be back later. lunch... - LehighBri - 2012-02-19 20:09 mcheng89 Wrote:not sure. maybe switch it to print if you can. I'll be back later. lunch... I switched the self.log to print statements in EPGWindow.py but no luck. The XBMC log file still doesn't show any onAction prompts. No rush to look into this. Keep me posted once you're back and get more time and I'm happy to keep playing around with this depending on what you recommend. |