MCI (short for Media Control Interface) is a high-level API providing standard commands for playing multimedia devices and recording multimedia resource files.

learn more… | top users | synonyms

1
vote
0answers
10 views

Read amplitudes of (MP3/WAV) using MCI Command

A couple of friends and I are working on a soundboard and we would like to implement a waveform-generator, for which we need information regarding the amplitudes of a sound at specific points. I would ...
0
votes
1answer
55 views

MCI Device Error in MFC

MCI Error The specified file cannot be played on the specified MCI device. The file may be corrupt, not in the correct format, or no fil I have used following code to create a device and play the ...
0
votes
0answers
40 views

How to pause/sleep an audio wav file, without blocking?

I was told to use mcisendstring but I have no idea how to implement it...I honestly tried to google it and look at some forums but basically: 1: I want to play an audio sample that plays continuously ...
0
votes
1answer
258 views

MP3 playing using mci send string c++

Im trying to play some mp3 files as my background music in one of my project which Im doing. I tried to play it using mcisendstring but it just couldnt work :( These what I have done: CMP3_MCI ...
1
vote
0answers
72 views

VC++ MCI Play Video [closed]

I'm using VC++ and MCI to make a simple video player. I made my load and play methods but I'm not sure where to go from there, it does nothing when I call Play(). Where is the video suppose to play? I ...
0
votes
0answers
80 views

MCI load video file

I'm trying to load then play a video file with mci in my visual c++ application but the mciSendString() method keeps failing and returning an error code. The error code is 259 meanings ...
3
votes
1answer
86 views

Opening And Closing Multiple Drives

I am working on a DVD burning robot. As part of the process I need to open and close the DVD trays, to allow the robot to pick the disks up after burning. I have however run into a problem. I can ...
1
vote
1answer
195 views

Changing soundcard and playing an MP3

I want to play an MP3 on a sound card other than the default (e.g. I plugged in a USB headset). I have code that works perfectly fine if I want to play a WAV file on a different sound card. But with ...
0
votes
2answers
495 views

C# MciSendString Recording, Works in debug, not deployed

I really hope someone can point me in the right direction with this. This code works perfectly when I'm debugging within Visual Studio Express 2010, but give me the mci error 263 - "The specified ...
0
votes
1answer
296 views

.wav Player : mmioOpen API

I am trying to make an audio player that plays .wav files. I wrote a function ReadWaveFile(CString szFilename) for reading the wave data of the file into the WAVEHDR structure. In this function BOOL ...
3
votes
0answers
200 views

WOW64 SetLayeredWindowAttributes LWA_ALPHA

I am displaying a dialog as a layered window using code like this: SetLayeredWindowAttributes(modalDlg, 0, 179, LWA_ALPHA); ...and everything works nicely on 32 bit Windows. However in WOW64 this ...
-1
votes
1answer
260 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 ...
0
votes
1answer
541 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 ...
2
votes
1answer
2k 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 ...
4
votes
2answers
499 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, ...
7
votes
1answer
900 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 ...
-1
votes
1answer
416 views

make media player

how can i add "using MCI;" in my c# project to make media player ??????
0
votes
2answers
2k 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
428 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
440 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
467 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 ...
7
votes
2answers
10k 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
5answers
5k 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
2answers
905 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 ? ...
1
vote
2answers
5k 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#. ...