Questions tagged [axwindowsmediaplayer]

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

166 questions
0
votes
1 answer

axWindowsMediaPlayer event after media stopped playing

I imported a axWindowsMediaPlayer control to my form to play a sequence of pictures and/or small videos. Now I want the user to adjust the slide show to his own needs, so he should be able to select the "showtime" of each picture and just play the…
Nick Peelman
  • 585
  • 1
  • 10
  • 28
0
votes
1 answer

WindowsMediaPlayer Playtime

I have a windows form with a aXWindowsMediaPlayer which should play a random video/picture every 5 seconds using the method aXWindowsMediaPlayer.Url =
Nick Peelman
  • 585
  • 1
  • 10
  • 28
0
votes
1 answer

axWindowsMediaPlayer1_PlayStateChange event not working

i want to play automatically next song in my player. I have use windows media player object. this is my code. private void timer2_Tick(object sender, EventArgs e) { if (songList.SelectedIndex < files.Length - 1) { …
vidhi
  • 411
  • 1
  • 6
  • 19
0
votes
2 answers

How to start playing a playlist by clicking on a LinkLabel?

I have added the playlist names from a directory in a ListBox using LinkLabel at run time but now I want that when I click on the LinkLabel of that playlist, the playlist should run and play the songs. I have no idea about how to give the path or…
vidhi
  • 411
  • 1
  • 6
  • 19
0
votes
1 answer

File format supported by windows media player component

I m developing media player in c# and I m using windows media player component for that.. This is my code private void songList_SelectedIndexChanged(object sender, EventArgs e) { axWindowsMediaPlayer1.URL = paths[songList.SelectedIndex]; } Can…
vidhi
  • 411
  • 1
  • 6
  • 19
0
votes
2 answers

AxWindowsMediaPlayer play a song

Can I please have some help to play a audio file with the AxWindowsMediaPlayer. I am using Visual Basic.net 2012 Ultimate. Here is my code: Imports AxWMPLib Public Class Form1 Public WithEvents MediaPlayerObject As AxWindowsMediaPlayer = New…
user2023359
  • 289
  • 2
  • 10
  • 18
0
votes
1 answer

Provide DirectShow filter for Windows Media Player ActiveX control in C# application

I'm using Windows Media Player ActiveX control in C# application. Also I have third-party DirectShow filter (Wasabi Marlin) which I need to use for video playback. As far as I know, the Windows Media Player is able to use DirectShow filters. How can…
Aleksey Shubin
  • 1,960
  • 2
  • 20
  • 39
0
votes
1 answer

Use asx files or make new playlist?

I have .asx file that contains: Super FM 104,8 - NICOSIA Powered by OneStreaming.com
a1204773
  • 6,923
  • 20
  • 64
  • 94
0
votes
1 answer

media player exceptions

I'm writing a windows application. I have media player in my form. When I set the URL to something like "fsgfbnhgb" (something wrong!) the player by itself shows an error. But it's not good. I have "try" and "catch" blocks and in try block there…
Emran
  • 544
  • 7
  • 26
0
votes
1 answer

axwindowsmediaplayer is showing green page instead of playing video in wpf

I am developing a wpf application for a low performance system (on board VIA/S3G UniChrome Pro IGP graphic with 16 MB Memory size). Application works in an information kiosk showing images in slide mode or playing videos base on schedules made by…
ali_reza
  • 1
  • 2
-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

Playing videos without lag or black screen in C# winforms

I m working on this project, the client gave me the task to design the UI and embed videos. The backend code of that application is complete according to the client and the backend code is really poorly written with zero optimization. The…
-1
votes
1 answer

creating media player button from user control in main form c#

I want to play media player in main form, from user control that media player is in there. How can C call media player with buttons that I put them in main form? private void player1_Load(object sender, EventArgs e) { } private…
behrooz uac
  • 37
  • 1
  • 8
-1
votes
1 answer

How to detect the end of an AxWindowsMediaPlayer playlist

I currently have a program which plays a set of videos from a playlist then displays a set of images once the videos are done playing. I am currently using the PlayStateChange event to count each time a video is ending but this results in the images…
Harrison
  • 57
  • 11
-1
votes
1 answer

Prevent axWindowsMediaPlayer stop after media end

I am creating a c# winform application to play video, what i want is to pause the player and prevent that to stop after media ending: private void axWindowsMediaPlayer1_PlayStateChange(object sender, AxWMPLib._WMPOCXEvents_PlayStateChangeEvent e) …
Farzin
  • 3
  • 3
1 2 3
11
12