Questions tagged [axwindowsmediaplayer]

AxWMPLib.AxWindowsMediaPlayer is the base class for the Windows Media Player control

166 questions
0
votes
0 answers

Strange conflict between axWindowsMediaPlayer component and keydown method

I am making something like a 2d rpg game. Inside one of the room forms i have placed a small axWindowsMediaPlayer window to resemble a tv screen. The problem is that it somehow prevents the player from moving using arrow keys. After lots for…
0
votes
2 answers

How to effectively mute windows media player?

I am creating a system that uses windows media player. Actually this system doesn't need to have sounds at all so how can I mute my windows media player throughout the entire runtime?
Cary Bondoc
  • 2,923
  • 4
  • 37
  • 60
0
votes
1 answer

axWindowsMediaPlayer event not working in not-Form class

the axWindowsMediaPlayer has been working correctly in my Form class, now I wanted to create an abstract factory for different players and I moved the axWindowsMediaPlayer into an implementation class of that factory. But now the playstatechanged…
user26026
  • 27
  • 9
0
votes
2 answers

How to play encrypted video file using WindowsMediaPlayer?

I encrypt my .mp4 into a custom format (.opu). Now I should decrypt my file and save them into temp folder at the start of my application. and play them using WindowsMediaPlayer control in C#. So I have the risk of stealing my files from temp…
0
votes
0 answers

axWindowsMediaPlayer Crashes Program

I am trying to make a MP3 player with playlist functionality, I have googled everywhere, tried examples, but nothing works. Where the code freezes up at is when p[ListBox1.SelectedIndex + 1]; is called, and I have no idea why it locks up the…
Jacob
  • 69
  • 14
0
votes
1 answer

How to get and save a temporary time in a file and read it?

I am developing an app. in windows form application in C# , which user can upload two video in two separate player and there are Play, Pause, and Stop button which enables the user to play,pause and stop two video synchronously. For the Pause…
Arian
  • 73
  • 12
0
votes
1 answer

AxWMPLib.AxWindowsMediaPlayer autoplay after end of song

I try to make simple audio player, then I try it. After end of song, the player stopped. I want to set it automatically and select randomized, at the playlist. I use URL and a ListBox as playlist.. This is the code snippet at autoplay part: private…
toha
  • 5,095
  • 4
  • 40
  • 52
0
votes
1 answer

Playing, editing then replaying a video in c# using directshow

As above, I'm looking to create a basic Windows.Forms GUI with two video players, one showing the original video and the other showing an edited version. Looking at using C#, but I'm open to using C/C++ if there's a particular reason to, it also…
GeorgeStorm
  • 15
  • 1
  • 8
0
votes
1 answer

axWindowsMediaPlayer Visual C++ End of File

I have a problem handling the end of file state of the axWindows Media Player and then open another frame in Visual C++ Here is my function : private: System::Void axWindowsMediaPlayer1_PlayStateChange(System::Object^ sender,…
Antaka
  • 27
  • 2
  • 4
0
votes
0 answers

Adding Eventlisteners to axWindowsMediaplayer

I have a windows form where I programmatically create controls.. later I allow them to be moved around per drag&drop that I implemented myself: private void valueToolStripMenuItem_Click(object sender, EventArgs e) { Label label = new…
Salocin
  • 393
  • 6
  • 17
0
votes
2 answers

How can I get the video time being miliseconds

I am using the WMPLib in C# and I want to get video time in milliseconds.I will configure another program by using these milliseconds values.Is there any way to get VMP data in milliseconds? Also I tried : double temp =…
dodotu
  • 117
  • 1
  • 5
  • 17
0
votes
1 answer

What else can cause an AxWindowsMediaPlayer to play?

I have a button in my program that grabs a bunch of information from a DataGridView object (volume, url, delay, etc) and using that, it plays a file. I'm trying to get the delay to work (wait x number of seconds before playing) and I'm pretty it…
alexanderd5398
  • 332
  • 1
  • 4
  • 16
0
votes
1 answer

Why can I not set the volume of an AxWindowsMediaPlayer object with a slider?

Whenever I try to say the volume of the media player like this: Private Sub SndMasterSlider_ValueChanged(sender As Object, e As EventArgs) Handles SndMasterSlider.ValueChanged Player1.settings.volume = SndMasterSlider.Value End Sub I get this…
alexanderd5398
  • 332
  • 1
  • 4
  • 16
0
votes
1 answer

ParentMDI and axWindowsMediaPlayer fullscreen

I have a parent form called Form1, and a child form called Form2. Form2 has an embedded video, but when I try to set axWindowsMediaPlayer1.fullscreen=true I got an error. If I do not use Form2 as a child, it works ok. So how can I set…
MarceloClaure
  • 61
  • 2
  • 3
  • 8
0
votes
1 answer

C# Bass.dll read Radio-Stream Title + Artist?

I currently woking on a Project, which can play radio-streams. These streams will be played with the axWindowsMediaPlayer Control. But how can I read the stream title + artist? Greetings from germany, Max