INTERACT FORUM

More => Old Versions => Media Center 12 (Development Ended) => Topic started by: Mastiff on May 13, 2008, 03:21:13 pm

Title: Anybody with a full Girder definition file for MC? Or at least a little help?
Post by: Mastiff on May 13, 2008, 03:21:13 pm
I found out that my old file was missing a lot of the commands I need for video playback, and also not all of the commands worked as I expected. Like this:
Code: [Select]
WindowHandle = win.FindWindow ("MJFrame",nil)
result = win.PostMessage ( WindowHandle, 33768, 10001, 16777216)
It sort of works, the part with getting the window handle and posting the message is OK, but the problem is that if the video is paused, it will first stop the video and then restart playback. I didn't expect a command called MCC_PLAY to do that. Also I can't get the command MCC_SET_PAUSE to work, probably because I don't fully understand what to do with the BOOL bPause (-1 toggles) part. This doesn't work:
Code: [Select]
WindowHandle = win.FindWindow ("MJFrame",nil)
result = win.PostMessage ( WindowHandle, 33768, 10000, 16777216)
What should I do to get it working? Thanks in advance!
Title: Re: Anybody with a full Girder definition file for MC? Or at least a little help
Post by: carbo on May 13, 2008, 04:31:16 pm
Personally I use Girder (4.0) to emulate keyboard.
This way I'm doing PLAY/PAUSE by sending Ctrl+P to the MC window and it's working fine.

But I only use basic commands: Play, next,previous, fast forward, fast rewind and the ratings.
If you want to send more complex commands maybe this method won't be enough.

Title: Re: Anybody with a full Girder definition file for MC? Or at least a little help?
Post by: glynor on May 14, 2008, 12:56:57 pm
I have one pretty well done for Girder 4... Search the Third Party board and you should find a download.  The posted one is a bit old, but still works fine.

It uses Windows Messages to send all of the commands directly (better performance than keyboard emulation and doesn't affect other apps).
Title: Re: Anybody with a full Girder definition file for MC? Or at least a little help?
Post by: Mastiff on May 14, 2008, 01:20:19 pm
carbo, that doesn't work. I need discrete play and pause, which those two commands should give me.

Glynor, thanks! I'll have a look at that!