Questions tagged [axwindowsmediaplayer]

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

166 questions
3
votes
0 answers

c# How to show same video in two forms or tow video players simultaneously

I'm looking for a way to show, the video which is playing in one wmp, into another form. Basically I want to see the same video in two different forms. I looked and did a lot of searches but could't find any solution. For this reason, I will…
3
votes
1 answer

How to play all songs from List with Windows Media Player?

so I have a list class called SąrašasList and it has string item called vardas, which contains a path name to a song, I have few songs in this list, and also GUI with AX Windows Media player, but when I write : private void…
Haby
  • 35
  • 10
3
votes
0 answers

AxWindowsMediaPLayer: Pause video at last frame using C#

I have designed a Winform App for Microsoft Surface Hub (touch device). Summary: Form 1 is the Introduction Form which plays a single video (axWindowsMediaPlayer) in loop until a user interrupts the application. If a user interrupts the…
John
  • 142
  • 1
  • 1
  • 16
3
votes
1 answer

How to stretch the video completely

I am using axWindowsMediaPlayer and when I make the screen full, video is being shown but the player put 2 black block near side of video. I don't want these blocks. I tried axWindowsMediaPlayer1.stretchToFit = true; but that didn't work. Because…
dodotu
  • 117
  • 1
  • 5
  • 17
3
votes
2 answers

Embeded Windows Media Player full screen

I have an embedded video in a winform using axwindowsmediaplayer and C#. I have a timer to set the control to fullscreen=true after some time. private void timer1_Tick(object sender, EventArgs e) { timer1.Stop(); videowmp.fullScreen =…
MarceloClaure
  • 61
  • 2
  • 3
  • 8
3
votes
1 answer

The method setMode("showFrame", true) of axWindowsMediaPlayer not work in WMP 12 for Windows 7

I use axWindowsMediaPlayer control to play video and I use the following method in order to display the current video frame by moving the seek. axWindowsMediaPlayer1.settings.setMode("showFrame", true); This function works fine for Windows XP but…
3
votes
0 answers

c# winforms with 'AxWindowsMediaPlayer' control following error thrown: "System.NotSupportedException"

I have a window form which has an AxWindowMediaPlayer control on it. On a client computer with Windows 7, when the form is shown, in Form.Designer.cs an exception is thrown on the…
razvanSax
  • 87
  • 1
  • 8
2
votes
1 answer

Non-overlapped transparent control

I'm trying to make a tooltip for my video player. I use a windows media player embedded into my winform's app on c# (AxWMPLib.AxWindowsMediaPlayer) for playing video. And I have created a control that shows a current position of a media. This…
Brain89
  • 460
  • 1
  • 4
  • 17
2
votes
1 answer

AxWindowsMediaPlayer skip back and forth frame by frame

I have a WMV file playing in an AxWindowsMediaPlayer object. I have two buttons that are enabled when the video is paused. One should skip backwards one frame, and the other should skip forwards one frame. The problem is, if I just add 1/24ths of a…
Entity
  • 7,972
  • 21
  • 79
  • 122
2
votes
0 answers

Embedded Windows Media Player Set Position is slow

So, I have an AxWindowsMediaPlayer control on my form, and I'm looking to, while its playing, change the playback position to another point. I found: mediaplayer.Ctlcontrols.currentPosition = But If I call that whilst its…
Entity
  • 7,972
  • 21
  • 79
  • 122
2
votes
0 answers

C# AxWindowsMediaPlayer fast forward

I'm just starting out with programming and in one of the courses it gets me to make a basic windows audio player. It had no functionality for skipping forward or backwards so I thought I'd add that to the basic program. I added the required…
2
votes
2 answers

How do i work with windows media player from another form?

So i have 2 forms, one is called "musica" and its playing a music (this form is invisible) and the other is called "Form1" and gives the option to stop and start the music with radio buttons. The problem is that the radio buttons are working, but…
2
votes
1 answer

How to jump X second with axWindowsMediaPlayer in C#

I am using axWindowsMediaPlayer, and I have a video loaded, but I want to jump X seconds. So, for example, if the current time is 1 minute into the video, I want to jump to 1 minute 10 seconds.
trex005
  • 5,015
  • 4
  • 28
  • 41
2
votes
2 answers

AccessViolation (0xc0000005) before video starts playing

My Windows Form Application is closing unexpectedly and the debug console says AccessViolation 0xc0000005 before starting to play the video. I'm starting the video with the following code: private void Form1_Load(object sender, EventArgs e) { …
2
votes
1 answer

axWindowsMediaPlayer: Black Screen on looping

I have created a Windows Form Application having axWindowsMediaPlayer control. I haven't created a playlist on it, but I have stored my .mp4 files at a particular location. I pass the path to my next video at Media Ended state. For the first time,…
Yash Saraiya
  • 1,035
  • 1
  • 20
  • 40
1
2
3
11 12