Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
175 views

Flash and Audio Hooking

I'm trying to capture the audio which an activeX flash component is playing. I do this by finding the flash.ocx module and hook the waveOutWrite function. This seems to work well, however I cannot ...
2
votes
4answers
2k views

waveOut (Win32API) and multithreading

I cannot find any information about the thread-safety of the waveOut API. After i creating new waveOut handle, i have those threads: Thread 1: Buffers handling. Uses those API functions: ...
2
votes
2answers
390 views

Query wave format for a HWAVEOUT handle

Context: I have a piece of code that knows the value of a waveOut handle (HWAVEOUT). However the code did not create the handle, thus the WAVEFORMATEX that was passed to waveOutOpen when creating the ...
2
votes
4answers
465 views

Playing wave file ends immediatly (C++, Windows)

I've got a following situation. On a machine there is a Fritz ISDN card. There is a process that is responsible for playing a certain wave file on this device's wave out (ISDN connection is made at ...
1
vote
1answer
231 views

waveOutSetVolume ignoring the handle

I have couple of waveout handles in my code that playing in parallel. Now i want to set different volume for each waveout handle. There is a waveOutSetVolume win32api function: ...
1
vote
1answer
109 views

Maintaining encapsulation when wrapping native libraries

I'm writing a C# library to wrap a Win32 API (the waveOut... family of functions), and have reached a point where I'm unsure how to manage the interaction between different parts of my code without ...
0
votes
1answer
64 views

Threading dilemma, atleast i think it is

I am trying to output audio samples, and do so with cswavplay from http://www.codeproject.com/KB/audio-video/cswavplay.aspx which in turn seem to use DllImports from winmm.dll. I did get it to play ...
0
votes
0answers
30 views

c++ windows mapping waveout deviceid to hardwareid

Is it possible to find the waveoutopen id with the fysical deviceid (wmi Win32_SoundDevice.deviceid)? I can't use waveOutGetDevCaps because all the devices have the same name.
0
votes
2answers
194 views

DirectSound affects system volume on WinXP

I'm currently developing an audio engine that is used in voice network chat software. Everything is working fine - capture/playback/mixing channels. The problem is in using it under Windows XP. I've ...
0
votes
3answers
683 views

What is the latency (or delay) time for callbacks from the waveOutWrite API method?

I'm having a debate with some developers on another forum about accurately generating MIDI events (Note On messages and so forth). The human ear is pretty sensitive to slight timing inaccuracies, and ...
0
votes
1answer
649 views

vhost.exe crashes when trying to make waveout work in C#

I tried to use waveout in C# to play more wav files simultaneously (at least the different ones). (SoundPlayer object only plays one in a time, and I don't want to use DirectSound and MediaPlayer ...