How to interact with Windows Media Player in C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T09:43:00Zhttp://stackoverflow.com/feeds/question/56478http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/56478/how-to-interact-with-windows-media-player-in-c2How to interact with Windows Media Player in C#oreon2008-09-11T13:02:32Z2009-10-07T09:22:35Z
<p>Hello,</p>
<p>I am looking for a way to interact with a standalone full version of Windows Media Player.<br />
Mostly I need to know the Path of the currently played track.</p>
<p>The iTunes SDK makes this really easy but unfortunately there really isn't any way to do it with Windows Media Player, at least not in .Net(C#) without any heavy use of pinvoke, which I am not really comfortable with.</p>
<p>Thanks</p>
<p>Just to clearify: I don't want to embedded a new instance of Windows Media Player in my app, but instead control/read the "real" full version of Windows Media Player, started seperatly by the user</p>
http://stackoverflow.com/questions/56478/how-to-interact-with-windows-media-player-in-c/56493#564933Answer by AlexDuggleby for How to interact with Windows Media Player in C#AlexDuggleby2008-09-11T13:08:26Z2008-09-11T13:19:12Z<p>I had this <a href="http://forums.msdn.microsoft.com/en-US/clr/thread/dbd43d7e-f3a6-4087-be06-df17e76b635d" rel="nofollow">http://forums.msdn.microsoft.com/en-US/clr/thread/dbd43d7e-f3a6-4087-be06-df17e76b635d</a> in my bookmarks but have NOT tested it in anyway. Just a pointer in the right direction. It's nothing official and will require a bit of digging, but you should get a fairly simple wrapper (which will still use PInvoke under the hood - but you won't see it) around Windows Media Player.</p>
<p>Hope that helps.</p>
<p>Oh, I misunderstood. I thought you were talking about controlling the currently running Windows Media Player instance. If you are hosting Windows Media Player yourself then WMPLib is certainly the better solution.</p>
http://stackoverflow.com/questions/56478/how-to-interact-with-windows-media-player-in-c/56494#564945Answer by Markus Olsson for How to interact with Windows Media Player in C#Markus Olsson2008-09-11T13:09:23Z2008-09-11T13:09:23Z<p>Just add a reference to wmp.dll (\windows\system32\wmp.dll)</p>
<pre><code>using WMPLib;
</code></pre>
<p>And then you can instantiate a media player</p>
<pre><code>var Player = new WindowsMediaPlayer();
// Load a playlist or file and then get the title
var title = Player.controls.currentItem.name;
</code></pre>
<p>See <a href="http://msdn.microsoft.com/en-us/library/bb262248(VS.85).aspx" rel="nofollow">Creating the Windows Media Player Control Programmatically</a> for more information</p>
http://stackoverflow.com/questions/56478/how-to-interact-with-windows-media-player-in-c/56504#565040Answer by Dave Arkell for How to interact with Windows Media Player in C#Dave Arkell2008-09-11T13:17:24Z2008-09-11T13:31:28Z<p>The best info I have seen on interacting with Windows Media Player is this <a href="http://blogs.msdn.com/toub/archive/2007/09/22/fun-with-dvr-ms.aspx" rel="nofollow">article</a> written by Stephen Toub.</p>
<p>He lists a whole load of different ways to play dvr-ms files (doesn't really matter what format they are for this though). The bit that is possibly of interest to you is about using a Media Player ActiveX Control, which you can add to the visual Studio toolbox by right-clicking and adding the Windows Media Player ActiveX COM Control. You can then embed the player into your app, and access various properties of Media Player, like the url:</p>
<pre><code>WMPplayer.URL = stringPathToFile;
</code></pre>
<p>This solution is possibly not what you want because it's starting a new instance of Media Player (as far as I know), however it might point you in the right direction.</p>
http://stackoverflow.com/questions/56478/how-to-interact-with-windows-media-player-in-c/764856#7648561Answer by zzht for How to interact with Windows Media Player in C#zzht2009-04-19T04:47:17Z2009-04-26T03:50:28Z<p>For remoting the Windows Media Player, you can use the IWMPRemoteMediaServices interface to control the stand alone Windows Media Player. And you should be able to read all the informations you want like title or filename from your WMP player object. Unfortunately there is no C# smaple code in the SDK included. You can get the files from here: <a href="http://d.hatena.ne.jp/punidama/20080227" rel="nofollow">http://d.hatena.ne.jp/punidama/20080227</a> Look for the file WmpRemote.zip
Originally it's from here: <a href="http://blogs.msdn.com/ericgu/archive/2005/06/22/431783.aspx" rel="nofollow">http://blogs.msdn.com/ericgu/archive/2005/06/22/431783.aspx</a></p>
<p>Then you have to cast to the WindowsMediaPlayer object:
RemotedWindowsMediaPlayer rm = new RemotedWindowsMediaPlayer();
WMPLib.WindowsMediaPlayer myPlayer = this.GetOcx() as WMPLib.WindowsMediaPlayer;</p>
<p>and there you go..</p>
http://stackoverflow.com/questions/56478/how-to-interact-with-windows-media-player-in-c/1530488#15304880Answer by Madhup for How to interact with Windows Media Player in C#Madhup2009-10-07T09:22:35Z2009-10-07T09:22:35Z<p>you can use this code also in which path is the absolute or relative url of the file.</p>
<p>using System.Diagonostics;
Process objProcess;
ProcessStartInfo mediaStartInfo;</p>
<p>objProcess = new Process();
mediaStartInfo = new ProcessStartInfo(@"windows\wmplayer.exe", path);
objProcess.StartInfo = mediaStartInfo;
try
{
objProcess.Start();
}
catch (Exception e) { }</p>