The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
133 views

Sounds won't play absolutely together with mciSendString and winmm.dll

Last post I asked for help with playing 2+ files together in C#. I found a way with winmm.dll with the mciSendString function. My problem is that the files won't play 100% together all the time - ...
0
votes
0answers
108 views

WPF MediaElement and WinMM

I've learned everything I can about WinMM (opening/closing mixers, enumerating controls, etc.) Where I'm stumped is that it seems WPF's MediaElement ignores my settings through WinMM, but Window's ...
0
votes
1answer
302 views

Get microphone sound level while recording in Windows 7

I'm implementing a simple record, play application that can play and record a WAV file. The requirements are as follows: 1) Windows 7, Visual studio 2010(or 2012), C# 2) Record, play Wav file with ...
24
votes
2answers
510 views

Controlling Excel via Midi controller

I've got one of these and wanted to use the sliders on it to control Excel, just like one of the Excel form control scroll bars. I've managed to modify this code for VBA, but it is extremely ...
1
vote
1answer
108 views

Using winmm library in C

i'm trying to make a program in which I can play music i.e mp3 files.I'm trying to do this by using the winmm library.At first when i tried linking it,the compiler gave errors from which i realized ...
2
votes
1answer
162 views

Are there any .NET replacement for timeBeginPeriod and timeEndPeriod methods?

I've been working on a program that communicates on SerialPort and having problem with it. It's communication is below 50% or less. If not, it times out most of the time. From my research into this ...
1
vote
0answers
366 views

WaveOutWrite callback creates choppy audio

I have four buffers that I am using for audio playback in a synthesizer. I submit two buffers initially, and then in the callback routine I write data into the next buffer and then submit that ...
-2
votes
3answers
95 views

How to make hex vals acceptable to the compiler?

I'm trying to use the code at http://www.pinvoke.net/default.aspx/coredll/playsound.html It causes several err msgs, though, namely: "Unexpected character '×'" 26 times. So, I tried changing the ...
1
vote
1answer
389 views

Multimedia control with a multimedia keyboard in C#

I have keyboards, as well as the keyboard built into my laptop, which have multimedia keys. One of the multimedia keys is of course pause/play and it's a function of the keyboard driver that can be ...
0
votes
1answer
381 views

Is DirectSound and WinMM based on WASAPI?

I saw in this slides that the winmm and directsound in vista is based on wasapi. Does it means that winmm and directsound actually do their work by calling the functions in WASAPI ? I fail to find ...
0
votes
0answers
245 views

How to create a sound file using winmm.dll in vba?

I know it is possible to play sound using the winmm.dll library in vba/excel. But I would like to create some sound with a set of data and than save it in .wav format using winmm.dll. Is it ...
0
votes
1answer
134 views

How to check if a MIDI device is also a USB device?

How can you check if an MIDI device is also an USB device? Seems that checking for this string "\\?\\usb" in the device identifier is not enough all the time.
2
votes
0answers
186 views

Correct Windows API to find CurrentControlSet\Control\MediaProperties?

I'm looking to support a custom joystick device, and due to project requirements I can no longer use the DirectInput API. I've switched to using the "classic" Windows multimedia API (e.g. ...
6
votes
2answers
1k views

Change program's volume on Win 7

I want to change the program's volume (and not master volume). I have the following code right now: DllImport("winmm.dll")] public static extern int waveOutGetVolume(IntPtr hwo, out uint dwVolume); ...
0
votes
2answers
516 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 ...
3
votes
3answers
1k views

multi chanel sound with winmm, many WaveOutOpen?

I am trying to play a sound on Windows XP in multi-channel (parallel) manner. I had read somewhere that playing parallel sounds with WinMM is maybe not possible, but here is what I observe: When I ...
3
votes
2answers
2k views

Create a virtual MIDI port

I want to create a virtual MIDI loopback cable program that creates virtual MIDI ports to interconnect applications on Windows that want to open hardware-MIDI-ports for communication. SOrry if I am ...
0
votes
3answers
592 views

Play a continuous theremin like sound on MIDI using C#

I am trying to create a theremin like program, that plays continuous notes based on mouse cursor position. I am using Carl Franklin's MIDI Tools library to do this: ...
0
votes
1answer
100 views

In case of failed PlaySound(), is it possible to retrieve last error status?

I'm asking because universal GetLastError() returns ERROR_SUCCESS even if preceding PlaySound() call returned FALSE. I'm aware what winmm have specific error functions for waveOut, mixer, etc, is ...
4
votes
3answers
165 views

MIDIHDR Problems

I am trying to write a wrapper library for MIDI functions in WinMM.dll, but I am having trouble with MIDI long messages. I found this in PIvnoke.net (I added the first line myself): ...
1
vote
1answer
1k views

Joystick in win32 aplication, winmm

How should I understand this documentation: http://msdn.microsoft.com/en-us/library/dd757116%28v=VS.85%29.aspx Can I only use 4 buttons and 1 analog stick? I've got a gamepad with 12 buttons, 2 ...
0
votes
1answer
1k views

Access Violation in C# - winmm.dll ntdll.dll

I have an application which basically does three things: Show an image to the user Play a 1-2 second sound (wav) to the user Record microphone input for 4 seconds (while sound is playing) This ...
6
votes
1answer
523 views

NullReferenceException, no stack trace… where to start?

I have a WPF audio application. Occasionally (and even in the debugger) I'm seeing a NullReferenceException which carries no stack trace information with it. How can one start debugging such an ...
0
votes
1answer
89 views

Sounds effect in Windows

I am making a simple game.I am hitting a ball with my gun.When bullet will collide with ball it should give sound effect.Whether i hae done this but during sound effect my game becomes hold for a ...
1
vote
1answer
291 views

Waveform Audio via Callback, no data received

I am trying to use the WaveForm Audio functions in C# to read from a microphone. Now I have no past experience with this library so it may just be that I am missing something obvious. I am able to ...
0
votes
1answer
296 views

System.Threading.Timer: Why is it hating me?

I just started messing around with C#/.NET/mono and stuff, and I'm trying to make a simple song player. For this, I am using winmm.dll (did not find an easy cross-platform solution). The problem is ...
1
vote
0answers
97 views

Is it worth implementing anything other than DirectSound output?

I'm writing an audio application for Windows users. Currently audio is dumped to the soundcard via DirectSound. Is there any reason why this might fail on a typical desktop requiring a fallback to ...
2
votes
3answers
2k views

Joystick Key Capture

I want to capture input from joystick using winmm dll .. I don't have much knowledge of importing and working with DLLs. I tried to do it but i have no idea how to do it .. [DllImport("winmm.dll")] ...
0
votes
1answer
388 views

mciSendString: file that contains spaces

If i use mciSendString (winmm.dll) and try to read file that contains spaces (for example F:\MUSIC\(01) [VA]01.StimAxel - Restart(DJ X-VenomRemix).mp3) i got an error with code 263. mciSendString ...
1
vote
2answers
833 views

Windows Multimedia API winmm.dll library too slow

i am using Windows Multimedia API winmm.dll library to play MP3 files and when i load a song it takes kins of 3-5 seconds to open and start the song . I wish to make a music app and that requires fast ...
1
vote
3answers
2k views

Marshalling to a native library in C#

I'm having trouble calling functions of a native library from within managed C# code. I am developing for the 3.5 compact framework (Windows Mobile 6.x) just in case this would make any difference. I ...
1
vote
1answer
2k views

waveout sometimes memory issue

This code works to output a piano tone for 2 seconds using winmm.dll via platform invocation services, it seems to work fine on XP but waveoutopen fails in windows 7 rc updated based on feedback from ...
1
vote
1answer
263 views

Where is DRV_QUERYFUNCTIONINSTANCEID declared?

This question is related to this one. I need to use the winmm function waveInMessage using the above mentioned constant. I can find a bunch of similar defines (such as DRV_QUERYDEVICEINTERFACE) in ...
0
votes
1answer
409 views

Is there any way to obtain an audio device's GUID using only the waveIn API?

The reason why I ask this is because I want to relate a given winmm audio device like the ones you open using waveInOpen with a directSound device.
2
votes
1answer
375 views

Confused about how Windows get audio line names

I'm getting very confused about how audio devices/lines/endpoints are named in windows (vista). First I go to the control panel applet "Sound". Among others, I find one input line that resides ...
1
vote
1answer
917 views

Is it possible to relate the same audio device in different APIs?

I'm using the winmm api to deal with audio. I'm using waveInGetDeviceCaps and waveInMessage to uniquely identify an "audio line". Everything works fine, except that in Vista, the name of the device is ...
2
votes
3answers
2k views

How to relate WAVE_MAPPER audio line with its audio device

I'm developing an application that among other things, enumerates all input audio devices (using SetupAPI) and then for each audio device, it lists all input audio lines (using winmm.dll). ...
0
votes
1answer
1k views

Is the sound library WINMM.DLL found in every Windows Installation?

I'm making a little open source mp3 player for people to see the code, etc. Proper comments, examples and what not. I was wondering though, is the winmm.dll library found in every windows ...
3
votes
4answers
731 views

What determines the order for sound devices in windows when using winmm.dll?

I am trying to use NAudio to create a multiple sound output application. We have 8 USB sound cards installed. NAudio lets me use all 8 but I can't figure out a pattern for determining which device ...
0
votes
1answer
1k views

WinMM Library Issues

I wrote a WinMM library wrapper library that exposes WaveOut and WaveIn classes for the purpose of recording and playing raw audio streams. Everything works great, but in order to follow the ...