Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
1k views

Zune API ZuneCore.dll

I noticed the other day that the Zune PC Software exposes a type library (ZuneCore.dll). It seems to be related to the WMPLib API in some way but I can't figure out how to use it either from VB6 or ...
2
votes
2answers
1k views

Reference to wmp.dll (\windows\system32\wmp.dll)

Can I use a reference to wmpLib.ddl / wmp.dll (\windows\system32\wmp.dll) in a commercial application? I am using Visual Studio 2008 Express edition. I have to deliver that DLL.
2
votes
2answers
970 views

Calling WMPLib.mediaCollection methods from ASP.NET on IIS return empty lists

I am trying to access a Windows Media Player library from ASP.NET. The following code: WMPLib.WindowsMediaPlayer mplayer = new WMPLib.WindowsMediaPlayer(); WMPLib.IWMPStringCollection list = ...
1
vote
2answers
32 views

Why windows media player is not closing with player.Close() method?

I am creating a media player object in a simple console application, to play some file. Though the media player is getting launched successfully, when I am using the close() method, the process still ...
1
vote
1answer
21 views

How should I use WMPEqualizerSettingsCtrlClass in C#?

I use the following code: WMPEqualizerSettingsCtrl eq = null; eq.enhancedAudio = true; But I get an error: Object reference not set to an instance of an object.
1
vote
1answer
434 views

Pausing and resuming mp3 with WMPLib and C#

I'm working on a simple mp3 player project with C# and the WMPLib library. The idea is to make it controllable with a PIC component, to control media playing in the PC from "anywhere" in my house ...
1
vote
2answers
260 views

MP3 played in separate thread

One problem was solved, another followed: In a C#-program I use following method to set a labels color to green, then playing a mp3-file and finally setting the color back to black. The problem is ...
1
vote
0answers
303 views

WMPLib.WindowsMediaPlayer fastReverse not available

Hi guys I'm writing small application using WMPLib.WindowsMediaPlayer the thing is that the fastReverse method is allways not available ,I have no problems with fastForward which working fine ,I'm ...
1
vote
1answer
510 views

Can I play AAC internet radio with wmp.dll in C#?

Is this possible? If yes, can you provide any information on HOW to do this? If no, are there any other possible ways to decode AAC stream in C#?
1
vote
1answer
613 views

c# - wmplib - playing 2 mp3 files but can get them in synic

I have 2 windowsMediaPlayer objects setup Both objects have the same mp3 song file but when I play them at the same time they are out of sync by a few seconds. The code I call to play them looks like ...
0
votes
1answer
8 views

No sound when playing DVD with AxWindowsMediaPlayer in VB

I am using the AxWMPLib AxWindowsMediaPlayer for DVD playback in VB.Net. I can play back the DVD with the installed Windows Media Player 12, but it doesn't have any sound when I play it back in my ...
0
votes
0answers
53 views

C# code for Ripping CD Audio

I've spent hours trawling the net looking for a good sample piece of code that shows how to rip CD Audio to either WAV or MP3 format. I have a load of CD's and want them indexed in an application I'm ...
0
votes
0answers
30 views

What must be installed for WMPLib to work with C#?

I currently have a project using WMPLib that I'm using to play multiple sounds at the same time. I am not using the ActiveX component. Everything is working great on my machine. Before I send this ...
0
votes
1answer
480 views

Windows Media Player Control (winforms) - capture current frame as bitmap?

I am using Windows Media Player control in a winforms app, I would like to periodically capture the playing frame into a bitmap and save it locally. Does WMP expose the current playing frame? Surely ...
0
votes
0answers
370 views

C# how to play mutiple videos sequentially and loop it using the windows media player control in windows form?

I'm new here and I'm also new in the world of C#. I really need some help from the professionals. I want to embed a video in a Form (WinForms). I've managed to do that and autostart it using WMP ...
0
votes
1answer
197 views

How do I tell if a playlist is a music playlist in c#?

I've attached my code so far, my problem is all the playlists return "auto" or "wpl" for their type. (This is all using a WMPLib reference) mediaplayer = new WindowsMediaPlayer(); // Init. Playlists ...
0
votes
3answers
98 views

Update a label in C# ere mp3 is played

I'm fiddling around with a small problem. In a C#-program, I've a label whose color initially is black. Whilst a MP3-file is played, the label gets a green color and after the end of the music, the ...
0
votes
3answers
908 views

Help with wmp.dll (Windows media player) to vb 6

I have a serious problem with my VB 6 application. In it, I have a reference to wmp.dll in a Form, the idea it's play media video files, i have a ListView called LV1 in which I show the playlist ...
0
votes
1answer
132 views

WindowsMediaPlayer on Global.asax application_start

i have this basic code to play a mp3 file on a aspx page. WMPLib.WindowsMediaPlayer player = new WMPLib.WindowsMediaPlayer(); player.URL = "file's url" player.controls.play(); now this ...
0
votes
1answer
586 views

Current playing item in Windows Media Player (wmplayer.exe ver. 12)

Been trying this for a while now. All solutions I've seen on the net don't seem to work, specially the really simple way to do it. WMPLib.WindowsMediaPlayer c = new WMPLib.WindowsMediaPlayer(); ...
0
votes
1answer
460 views

WMPLib.dll not running Dispose() correctly. How can I play mp3s on Windows Mobile?

Using the Interop.WMPLib.dll to play mp3 files on Windows Mobile 6.x, but I can't get the GC to cleanly dispose of itself. I need to play a short mp3 (20-30 seconds) every 5 minutes for a long-running ...
0
votes
1answer
999 views

C# WMPLib Duration of a mp3

Im using WMPLib to make an easy mp3player in C#. Im almost done but theres one more thing I want to do. I Would like to how far gone the song is and also, how much is left of the song. using for ...