I've found the following project development for a TCP/IP Windows Media Center (WMC) controller.
http://vmccontroller.codeplex.com/
This installs as a plugin in WMC, that when installed provides an interface whereby the user can control WMC ie. play/pause/ff/rw etc. via HTTP commands and also telnet.
The user can request media data such as currently playing title, author, album, duration, play state, length.
Parts of the plugin that are not currently working include epg information for live tv.
Is there not some way that a plugin for LCDSmartie that could be developed to use this interface?
Perhaps the prospect of LCDSmarties development might put some impetus into the wmccontroller project, as this development seems to have slowed down.
Our new official repo is on github
LCD Smartie version 5.6 is released!
Download it now: https://github.com/LCD-Smartie/LCDSmartie/releases
LCD Smartie version 5.6 is released!
Download it now: https://github.com/LCD-Smartie/LCDSmartie/releases
Windows Media Center plugin
Moderators: _X7JAY7X_, caesar, IFR, mattcro, limbo
-
- Posts: 1
- Joined: December 15th, 2010, 1:45 pm
Re: Windows Media Center plugin
I am also waiting anxiously for a free WMC plugin. I vote for this try 

-
- Plugin Author
- Posts: 276
- Joined: May 27th, 2011, 2:13 pm
- Location: Stirling, Scotland
Re: Windows Media Center plugin
Hi,
I've created a plugin that uses the TCPIPController interface to provide some Media Center info to the display (Photo name, artist/track, video name etc.). It's pretty rough at the moment but am happy to share the source /dll with anyone. It's written in C and built wint Dev-C++ and runing on win 7 x64.
Interested? let me know.
Dave
I've created a plugin that uses the TCPIPController interface to provide some Media Center info to the display (Photo name, artist/track, video name etc.). It's pretty rough at the moment but am happy to share the source /dll with anyone. It's written in C and built wint Dev-C++ and runing on win 7 x64.
Interested? let me know.
Dave
-
- Plugin Author
- Posts: 276
- Joined: May 27th, 2011, 2:13 pm
- Location: Stirling, Scotland
Re: Windows Media Center plugin
I've published the first beta release of a dll for LCDSmartie which when used with TcpIpController will provide Windows Media Center status info.
The source and dll can be found on codeplex at: http://mcedll.codeplex.com/releases/view/67258.
The whole thing is only 58k.
Please try this and let me know how it goes.
Dave
The source and dll can be found on codeplex at: http://mcedll.codeplex.com/releases/view/67258.
The whole thing is only 58k.
Please try this and let me know how it goes.
Dave
-
- Posts: 2
- Joined: December 19th, 2010, 6:51 pm
Re: Windows Media Center plugin
HI Dave,
thanks very much for doing this.
I'm testing the plugin now, there's lot's of good stuff to look at.
First thing I've noticed, could we possibly have TrackTime formatted as hours, minutes and seconds, as opposed to total seconds?
Plus also, could there be some kind of configuration table, whereby instead of returning the channel number, we get the channel name instead?
1 - Channel One
2 - Channel Two
I'll get back to you in a couple of days after I've done some more testing.
thanks very much for doing this.
I'm testing the plugin now, there's lot's of good stuff to look at.
First thing I've noticed, could we possibly have TrackTime formatted as hours, minutes and seconds, as opposed to total seconds?
Plus also, could there be some kind of configuration table, whereby instead of returning the channel number, we get the channel name instead?
1 - Channel One
2 - Channel Two
I'll get back to you in a couple of days after I've done some more testing.
-
- Plugin Author
- Posts: 276
- Joined: May 27th, 2011, 2:13 pm
- Location: Stirling, Scotland
Re: Windows Media Center plugin
das1969,
i've put some updates on the site to provide this kinda functionality. the .doc file gives details.
Function 5 converts the given number of seconds to hh:mm:ss format e.g. $dll(MCE_dll.dll,5,$dll(MCE_dll.dll,4,TrackTime,),)
Function 6 converts the given channel number to a channel name. It looks up the content of MCE_dll.ini (which should be in the plugin directory)
// MCE_dll ini file contains tv channel info in the form
// channel_number Channel_name
// blank lines and lines starting with / are ignored
//
// Freeview EPG - Scottish Freeview Channel List
// Channel NumberFreeview Channel Name
1BBC One
2BBC Two
3ITV1
4Channel 4
The supplied file contains the channel list for Freeview in the UK (Scotland).
Example use would be: $dll(MCE_dll.dll,6,$dll(MCE_dll.dll,4,TrackNumber,),) which would return the current channel name.
i've put some updates on the site to provide this kinda functionality. the .doc file gives details.
Function 5 converts the given number of seconds to hh:mm:ss format e.g. $dll(MCE_dll.dll,5,$dll(MCE_dll.dll,4,TrackTime,),)
Function 6 converts the given channel number to a channel name. It looks up the content of MCE_dll.ini (which should be in the plugin directory)
// MCE_dll ini file contains tv channel info in the form
// channel_number Channel_name
// blank lines and lines starting with / are ignored
//
// Freeview EPG - Scottish Freeview Channel List
// Channel NumberFreeview Channel Name
1BBC One
2BBC Two
3ITV1
4Channel 4
The supplied file contains the channel list for Freeview in the UK (Scotland).
Example use would be: $dll(MCE_dll.dll,6,$dll(MCE_dll.dll,4,TrackNumber,),) which would return the current channel name.
-
- Posts: 1
- Joined: October 23rd, 2011, 10:08 pm
Re: Windows Media Center plugin
Welcome to the forum,
and I would like to ask the question why there is no native support for WMC?
Regards,
MariuCh
and I would like to ask the question why there is no native support for WMC?
Regards,
MariuCh
-
- Plugin Author
- Posts: 276
- Joined: May 27th, 2011, 2:13 pm
- Location: Stirling, Scotland
Re: Windows Media Center plugin
Could you explain a bit more? I'm not sure I understand the question.
Dave
Dave