HuluDesktopWMC
Last post 04-18-2010 12:48 PM by Squiggles. 112 replies.
-
-
rmeden

- Joined on 02-28-2008

|
Yaggs, Great plugin.. simple, works pretty good. The only problem I have is the "maximized" Hulu Desktop window isn't maximized once the screen size is adjusted. I use composite video out to an Standard Def (tube) TV. Media Center runs in full screen, I'm pretty sure at 640x480 resolution. When media center goes back to the desktop, the screen is changed to 800x600 automatically. The Hulu Desktop window unfortunately has already "maximized" itself at 640x480. I think the solution is to simple sleep for 1 or 2 seconds after minimizing Media Center to allow some time for the resolutions to stabilize. Robert
|
|
-
-
rgreenpc

- Joined on 03-29-2006
- Florida

|
I wish Hulu would write a MCML plugin so we could stay in the MC experience
My 7MC setup:
XPS420 (2.6 Ghz Quad Core) PowerColor Go! Green HD 5450, Avermedia Duet and 1 Ceton Infinitv4
|
|
-
-
Kreigz

- Joined on 05-23-2009

|
Wow! Works Great! To quote a great man, "I'm Happy ... my wife is happy."
And my 3 year old can watch "wood pecker" on Hulu, and my wife in Media Center with just the remote.
|
|
-
-
tedassur

- Joined on 09-01-2009

|
Robert:
I've had the exact same problem with Hulu through WMC. Finally, I've discovered the solution: my desktop, and my WMC were set to different resolutions! Hulu Desktop was working fine when I just ran it, but when I ran it via HuluDesktopWMC, it ran "bigger" than the screen. In the settings of WMC, there is a spot to change your resolution. Once I set it to match my actual desktop resolution, then HuluDesktop loaded fine. Hope this helps
|
|
-
-
Squiggly

- Joined on 08-25-2008

|
mogulman:The only issue I have is that Hulu is kind of jerky full screen when my pc is at 1920x1080. So when using Hulu Desktop app, I have to change graphic properties to 1280x720 (720p). Wish there was an automatic way of doing this..
Agreed. I took ssterb1‘s AutoHotKey
script from page 4 and added desktop resolution changing (which I found on Google). Now "I'm Happy ... my wife is happy." You'll need AutoHotKey to compile it and one of the 7MC menu editors to run it (I used Media Center Launcher & Configurator). Paste this into a text file, then rename to "HuluLauncher.ahk". Right click to compile it to an executable.
WinClose, Windows Media Center WinWaitClose, Windows Media Center ChangeDisplaySettings( (ClrDep:=32) , (Wid:=1280) , (Hei:=720) , (Hz:=60) ) Run, %LOCALAPPDATA%\HuluDesktop\HuluDesktop.exe WinWaitActive, Hulu Desktop
#persistent settimer, HULU, 200 return
HULU: IfWinNotExist, Hulu Desktop { ChangeDisplaySettings( (ClrDep:=32) , (Wid:=1920) , (Hei:=1080) , (Hz:=60) ) Send, #!{Enter} WinWaitActive, Windows Media Center ExitApp } return
ChangeDisplaySettings( cD, sW, sH, rR ) { VarSetCapacity(dM,156,0), NumPut(156,2,&dM,36) DllCall( "EnumDisplaySettings", UInt,0, UInt,-1, UInt,&dM ), NumPut(0x5c0000,dM,40) NumPut(cD,dM,104), NumPut(sW,dM,108), NumPut(sH,dM,112), NumPut(rR,dM,120) Return DllCall( "ChangeDisplaySettings", UInt,&dM, UInt,0 ) }
|
|
-
-
-
mpatnode76

- Joined on 02-09-2009
- San Francisco

|
BTDT:
What are you using for your IR receiver? I am guessing it is an iMon setup, perhaps provided by Antec? A truly native IR receiver, that doesn't have to go through third party software to determine its mappings, works fine between Media Center and Hulu Desktop. In other words: the Back button works fine under Hulu Desktop when it is launch through Media Center.
Ugh, yes I'm guilty of using the IRTrans receiver built into the case. Velocity actually shipped the Microsoft IR receiver with the system, but I was hoping to avoid yet another moving part. I've sometimes encountered similar issues with TMT. Thanks for the explaination.
|
|
-
-
BTDT

- Joined on 09-06-2007

|
I totally switched to a Microsoft IR receiver and my experience is MUCH better. Hulu, the Netflix plug-in, and Boxee integration is all seamless now. BTW, HuluDesktopWMC has transformed much of our Media Center use. We used to watch Hulu only when we missed a show on network TV, but now we regularly switch over to Hulu Desktop to look for and watch a wide variety of cable-based shows, especially things off of NatGeo, Speed, etc. It is almost like having cable.... :-) My wife and kids are also able to use the interface. Very nice!
|
|
-
-
-
BTDT

- Joined on 09-06-2007

|
mpatnode76:I tried to switch to the MS Receiver today and found it didn't like my universal remote. The arrow keys would only work once, and from there were ignored. The Origen case receiver has no problem with this, so it's the lesser of two evils for now. Also, I finally got sleep/wakeup to work with the IRTrans software, so I'm a much happier camper now.
You have hit the dreaded "debounce" feature it seems. Microsoft remotes alternate IR signals just in case you are getting "bounced IR" around your room. Universal remotes only send a single IR code per command, and thus every other instance of this is being ignored. See the thread noted below on the registry key to change to fix this problem. I had the exact same issue, which is all better now.... http://thegreenbutton.com/forums/p/51302/229440.aspx#229440
|
|
-
-
Mr. Headend

- Joined on 01-07-2009
- Redmond, WA


|
BTDT:You have hit the dreaded "debounce" feature it seems. Microsoft remotes alternate IR signals just in case you are getting "bounced IR" around your room. Universal remotes only send a single IR code per command, and thus every other instance of this is being ignored. See the thread noted below on the registry key to change to fix this problem. I had the exact same issue, which is all better now....
http://thegreenbutton.com/forums/p/51302/229440.aspx#229440
This is actually a feature of Philips RC6 IR encoding. The high-bit, I believe, is toggled with every button press so that for non-repeating buttons (e.g. volume-up), the IR receiver can ignore unintentional repeated key presses (like what can happen with cheap remote hardware when you press the button just once and get two or three). Sadly, most universal remotes are basically parrots (record and repeat), which means that the high-bits get messed up or stripped. The registry key in the above post:
HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\HidIr\Remotes\745a17a0-74d3-11d0-b6fe-00a0c90f57da
Set the EnableDebounce DWORD to 0 and reboot.
tells Media Center to ignore the toggling high-bit protocol, which allows universal remotes to work.
Mr. Headend, Microsoft Windows TV Team
This posting is provided "AS IS" with no warranties, and confers no rights.
|
|
-
-
getmethod

- Joined on 09-10-2009

|
ssterb1 -
Your solution using AutoHotKey worked perfectly! Thank you very much for that solution. Though the Desktop appears for a few seconds, it doesn't bother me. In fact, since my PC is a dedicated HTPC, what I did was made the Desktop as clean as possible (minimal icons) and changed the background to match WMC. This way, the fact that the Desktop appears isn't so obvious.
Thanks, again.
Intel Pentium E6300 Wolfdale 2.8GHz ZOTAC GF9300-D-E NVIDIA GeForce 9300 Mini ITX Vista Home Premium SP2 32-bit Western Digital Caviar Black 640GB 2GB DDR2 SDRAM 800 ASUS My Cinema-PE9400 Combo TV Tuner Card Samsung SH-S223B SATA DVD Burner APEX MI-008 Black Mini-ITX Case
|
|
-
-
mmatheny

- Joined on 12-12-2008
- Dickinson, TX

|
Hey, right click on the desktop, View, uncheck Desktop icons - that'll clean the desktop up!
Mike
Win7 RTM 7600 x32 Harmony 700 Comcast Houston (cable co) ECS M7050-M2 AMD Phenom 9550 QuadCore 4G RAM BFG GeForce 9600GT 512mb 160GB SATA II (OS) - AHCI 1TB SATA II (DATA) - AHCI LG GGC-H20LK Combo drive Hauppauge WinTV HVR-2250 Onkyo TX-SR608 Samsung PN50A550
|
|
-
-
getmethod

- Joined on 09-10-2009

|
Thanks for the advice...I was wondering how I could hide/remove the recycle bin. Perfect!
Intel Pentium E6300 Wolfdale 2.8GHz ZOTAC GF9300-D-E NVIDIA GeForce 9300 Mini ITX Vista Home Premium SP2 32-bit Western Digital Caviar Black 640GB 2GB DDR2 SDRAM 800 ASUS My Cinema-PE9400 Combo TV Tuner Card Samsung SH-S223B SATA DVD Burner APEX MI-008 Black Mini-ITX Case
|
|
-
|