Tagged Questions
MCI (short for Media Control Interface) is a high-level API providing standard commands for playing multimedia devices and recording multimedia resource files.
7
votes
1answer
431 views
Playback 24bit audio not possible
I'm trying to play a 24bit audio file with my AutoHotkey app. It just uses SoundPlay. Windows 7 has no problem, however Windows XP users cannot play the 24bit files.
The documentation says:
All ...
4
votes
2answers
175 views
MCI_OPEN fails for mp3 files in a C++ console application
This is what I did:
DWORD dwReturn;
MCI_OPEN_PARMS mciOpenParms;
mciOpenParms.lpstrDeviceType = _T("MPEGvideo");
mciOpenParms.lpstrElementName = m_tmpFileName;
dwReturn = mciSendCommand(NULL, ...
4
votes
2answers
4k views
How to change default sound playback device programatically?
How to change the default default audio device for playback and recording in vista programatically ?
Is there any registry setting for it like sound manager in window XP?
Which API does it?
2
votes
1answer
240 views
Start and stop MediaElement at specific times
I am change an app over to WPF, it plays audio and video and pictures all based on timed events .. I used "string MciCommand = string.Format("play frames FROM {0} to {1} {2}"" , before.
I have been ...
1
vote
5answers
2k views
Simplest way to play mp3 from Visual C++
A few years back, I wrote some util library around DShow/DSound to let me play MP3s in a Windows C++ application. Is that still the normal way to do it in a C++/MFC app, or is that an area of DirectX ...
0
votes
1answer
33 views
How to play mp4 videos using MCI device
Using the mciSendString command I am able to play avi, mpeg, mp3, etc. but I am unable to play mp4. Here in this web-site it says I can play any videos provided that I have the correct codecs. I am ...
0
votes
2answers
1k views
Has song finished playing? (C# MCI)
I have an mp3 player that sends MCI commands to play pause/ff/rw/stop the audio files etc and the only thing i can't figure out how to do is send an MCI command to tell it to play the next song when ...
0
votes
1answer
282 views
if i want to play mp3's what is the difference between lame and MCI(VFW32)?
Hello
basic question , i need to play mp3's in my application in windows
when goggling i got allot of tutorials about VFW32.lib to play mp3's
and i know lame , what is the best option for playing ...
0
votes
1answer
242 views
why mciSendString() to get status position fails in my code?
Is there any way to query mci device to query current playing position so that we can resume from there to play later on ?
cmd.Format(L"status %d waveaudio position",m_iDeviceIDPlayer);
mcirez = ...
0
votes
1answer
261 views
why MCI_OPEN fails and returns invalid device id?
dwReturn = mciSendCommand(0, MCI_OPEN, MCI_OPEN_ELEMENT | MCI_OPEN_TYPE
, (DWORD_PTR)(LPVOID) &mciOpenParms);
error -message is "The device name is already being used as ...
0
votes
2answers
491 views
playing a list of audio files in sequence
I've been confronted to a situation. I'm writing a Windows app in C# .NET.
I want to play multiple .wav files one after another and do that continuously.
is there a class that could allow that ? ...
0
votes
2answers
3k views
C# Play MP3 from Resources with MCI or WMP control?
I have a MP3 file in my Resources of Visual C#. I'm trying to find out if there is a way I can play this MP3 in a Windows Media Player control or with MCI, I'm not particular. I'm fairly new to C#. ...
-1
votes
1answer
46 views
MCI Device shows Incorrect Media Length
Sometimes the MCI device shows Incorrect Media Length for some particular media. I searched a lot in Google and the only solution I could find is written in Delphi (Delphi Solution) I couldn't find ...
-1
votes
1answer
177 views