Questions tagged [windows-media-player]

Windows Media Player (abbreviated WMP) is a media player and media library application developed by Microsoft that is used for playing audio, video and viewing images on personal computers running the Microsoft Windows operating system, as well as on Pocket PC and Windows Mobile-based devices. Editions of Windows Media Player were also released for Mac OS, Mac OS X and Solaris but development of these has since been discontinued.

Windows Media Player (abbreviated WMP) is a media player and media library application developed by Microsoft Corporation.

It is used for playing audio & video on personal computers running the Microsoft Windows operating system, as well as on Pocket PC and Windows Mobile-based devices.

Editions of Windows Media Player were also released for Mac OS, Mac OS X and Solaris but development of these has since been discontinued.

Windows Media Player Wiki

421 questions
0
votes
1 answer

how to ensure the Window media player is in Play mode?

Hi in my test case i have to click a "link", after that the application will download a ".wav sound file"..After downloading it plays automatically in the Windows media player..I ensured the WMP is in opened state, but my problem is i have to check…
Manigandan
  • 5,004
  • 1
  • 28
  • 47
0
votes
1 answer

Windows media server doesn't stop after playing 1 file from list

I'm playing Windows Media audio, triggered by an ASX meta-file which looks like this: Foo Bar Baz
AmbroseChapel
  • 11,957
  • 7
  • 46
  • 68
0
votes
1 answer

Issue controlling a Windows Media Player instance through IronPython

Using the .NET Windows Media Player library, I have been able to obtain and alter various file properties (like user rating) for Windows Media Player programmatically. I wish to use the same library to control (play, stop, next, etc.) a Windows…
covertCoder
  • 446
  • 3
  • 10
-1
votes
1 answer

Can i use IP address in URL properties of Windows Media Player in VB6.0?

I am trying to make a client server connection in vb 6.0 and stream video in server machine from a client machine.. my doubt is, can i keep the URL in properties of Windows media player as an "IP address" of client machine??? eg. Const…
Devi
  • 86
  • 4
-1
votes
1 answer

Memory leak in Windows Media Player

We are running a WinForms app on a Windows 10 IoT Enterprise LTSC build 1809 that uses WMP.dll the current installed version is 12.0.17763.1821 and it seems when a audio/video file is repeated that over time it consume more and more memory and…
-1
votes
1 answer

MediaPlayer and MediaStreamSource on Hololens 2

I have a working MediaPlayer based decoder that consumes livestreamed H264 video from incoming frames, using MediaStreamSource and responding to requests for samples from MediaStreamSource.SampleRequested. This is integrated into Unity in order to…
Rich Logan
  • 39
  • 6
-1
votes
1 answer

Problem with Windows Media Player ActiveX control in VBA Powerpoint

it's me and my projects for school again. This time I wanted to insert a video into PowerPoint using file path via WMP ActiveX, so I drew one as follows: (uiMode set to "none") When the slide show starts, I transfer all data from an Excel file to…
-1
votes
1 answer

WMP EventDispatcher: how to know who sent the event?

I am embedding Windows Media Player in a C program. I found the WMP Host example in C++ in the WMP SDK. It contains an even dispatcher. But when I receive an event, how do I know who sent the event and how do I access that class object's variables?…
Paul Ogilvie
  • 25,048
  • 4
  • 23
  • 41
-1
votes
1 answer

Importing reference to Windows Media Player

After several hours I once managed to import the Windows Media Player. Now I need to do it again, and I'm desperate because I don't see which file I need to import. The reference in my old project looks like that: The files I get offered while…
tmighty
  • 10,734
  • 21
  • 104
  • 218
-1
votes
1 answer

Referencing WMP under .NET

I can add the reference to Windows Media Player, but I don't get to the point where I could say Dim newPlayList As WMPLib.IWMPPlaylist = wmpControl.playlistCollection.newPlaylist("soundsToPlay") The WMPLib seems to be missing. I can drag the…
Maiken Roskilde
  • 447
  • 3
  • 14
-1
votes
1 answer

c# Taskbar Progress Bar, getting value from Windows Media Player currentMedia.currentPosition

What I tried to was getting the value in the following way, which didn't work: private void listBox1_MouseDoubleClick(object sender, MouseEventArgs e) { TaskbarManager.Instance.SetProgressState(TaskbarProgressBarState.Normal); …
Marian
  • 3,789
  • 2
  • 26
  • 36
-1
votes
1 answer

Used Windows Media Player with visual studio 2010 but it not working

i have used the Windows media player in visual studio 2010 but it can not run and give the following error. How can i solve these error i also change my build setting from X86 to AnyCPU but till it don't work. The error is following "Could not load…
Chirag Shah
  • 3,034
  • 1
  • 30
  • 61
-2
votes
1 answer

Full api wmplib.windowsmediaplayer c#

I am a beginner in C#. I'm trying to create a simple audio player. WMPLib.WindowsMediaPlayer wplayer = new WMPLib.WindowsMediaPlayer(); wplayer.URL = "my_sound.mp3"; wplayer.controls.stop(); I searched full API about WindowsMediaPlayer but found…
Coffeeman
  • 285
  • 1
  • 6
  • 17
-4
votes
1 answer

C# Internet radio if not play

Need check if radio play, and reload if not class Program { Random random = new Random(); StringBuilder s = new StringBuilder(); static void Main() { Console.BackgroundColor = ConsoleColor.DarkBlue; …
-6
votes
1 answer

All songs are starting simultaneously instead of one after another

WindowsMediaPlayer[] player = new WindowsMediaPlayer[31]; for(int i = 1; i < 30 ; i++ ) { player[i] = new WindowsMediaPlayer(); player[i].URL = @"C://Songs//m" + i + ".mp3"; player[i].controls.play(); } here I am using array to store…
1 2 3
27
28