Tagged Questions
The winmm tag has no wiki summary.
6
votes
1answer
216 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 ...
4
votes
3answers
81 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):
...
3
votes
2answers
357 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 ...
3
votes
4answers
460 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 ...
2
votes
3answers
167 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 ...
2
votes
1answer
221 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 ...
2
votes
3answers
1k 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).
...
1
vote
1answer
320 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 ...
1
vote
1answer
114 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 ...
1
vote
0answers
56 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 ...
1
vote
2answers
643 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")]
...
1
vote
2answers
464 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
1k 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
1k 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
166 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 ...
1
vote
1answer
547 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 ...
0
votes
0answers
44 views
How to control volume's pan with win32api?
I've implemented my own mixer application, which uses the winmm.dll with PInvoke to control the master volume.
For now, I can get and set the master volume. (:
I'm trying to get control on the ...
0
votes
3answers
212 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
39 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 ...
0
votes
1answer
565 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 ...
0
votes
1answer
62 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 ...
0
votes
1answer
136 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 ...
0
votes
1answer
235 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 ...
0
votes
1answer
255 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.
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 ...
0
votes
1answer
683 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 ...