420 questions
0
votes
1
answer
99
views
Autohotkey Script for starting Windows 11 Media Player in Mini Mode
I use the following script, but unfortunately it doesn't lead to the desired outcome:
#If WinExist("ahk_exe Microsoft.Media.Player.exe")
Send ^m
0
votes
1
answer
49
views
using Windows Media Player
I'm trying to create a simple app to play all the .mp3 files in a folder, using Windows Media Player. To start with, I simply specify one of the files. Then I'll get into building a list of files to ...
1
vote
1
answer
82
views
Why is a file unplayable in Windows Media Player?
I have written some code to generate a MP4 video. This is a simplified version of the code:
#include <iostream>
#include <fstream>
#include <cstdio>
#include <string>
#include &...
0
votes
1
answer
647
views
Windows 11 UWP app throws FileNotFoundException on Windows.Media.Playback.MediaPlayer constructor
I am debugging a problem on my Xamarin.Forms.UWP app.
I have multiple windows 11 machines where my program works fine when I install it from the windows store, but on machines from another vendor (...
-1
votes
1
answer
223
views
VBScript Using Out of Date ProgID for MediaPlayer
I am needing to update a VBScript that runs on a wide variety of machines and plays a sound file in the background. Here is my existing code:
Set Sound = CreateObject("WMPlayer.OCX.7")
Sound....
0
votes
1
answer
112
views
Get current song title from Windows Media Player UI in the bottom left
I want to get the text from the UI element in the bottom left of Windows Media Player. I want to store it in a python variable. How can I programmatically navigate the UI hierarchy to achieve this?
0
votes
1
answer
284
views
"Add to Windows Media Player list" programmatically
I have a small Python script that runs Windows Media Player and plays a list of music files. The files list is generated dynamically. The criteria for the list is that it should be random and a ...
0
votes
0
answers
139
views
MS Access Windows Media Player Plugin in Fullscreen
I have a windows media player plugin in my database to play training videos. I added a button to make the video play in full screen, which worked perfectly until recently.
Here is my code:
dim wmp as ...
1
vote
0
answers
123
views
Play 8k video in wpf using mediaELement is freezing
I am using WPF mediaement to play video, so basically my app is downloading the video from server and stored in local system path. I will get a event then I will fetch the video using path and play ...
2
votes
0
answers
1k
views
Alternate of Windows Media Player in .NET 6
I have recently install Visual Studio 2022, And Select Windows Form Application .NET, and select .NET6 (long term support), Now When I want to add Windows Media Player in my project from COM ...
0
votes
1
answer
319
views
Select and play a video in Access using a Subform
I am working on a DB that links users to training videos.
The primary Form "2_CCC" has the Windows media player plugin. That works.
The Subform has all the video files.
The issue is that I ...
1
vote
1
answer
2k
views
Customize Windows Media Player in C#
I am making application based on Windows Media Player in Visual Studio C#, I need media time in milliseconds, the media player I am trying to copy is:
But in Visual Studio C#, the default Media ...
0
votes
0
answers
121
views
How to you send the left or right track only of a media player to both left and right output? (preferably in VB.Net)
So, I have an MP3 with two people having a conversation person A on the left and person B on the right. I want to be able to isolate either one of them, and hear it across both ears (in headphone). If ...
0
votes
1
answer
59
views
Prohibit WindowsMediaPlayer wmmpsMediaEnded event
I have C# program in which I use WMPLib WindowsMediaPlayer. When playing goes to an end, it goes to these states:
wmppsMediaEnded --> wmppsTransitioning --> wmppsStopped.
By going to this chain ...
0
votes
0
answers
2k
views
How to use Media Player in Visual Studio 2022?
The documentation only lists the code for launching the player:
MediaPlayer _mediaPlayer;
System.Uri manifestUri = new Uri('http://amssamples.streaming.mediaservices.windows.net/49b57c87-f5f3-48b3-...
