Tagged Questions

0
votes
1answer
14 views

Directsound playing captured audio

I'm trying to work out a simple DirectSound app, but the lack of .net documentation has me frustrated. I'd like to capture the audio from one device and play it back to another. (like an audio …
1
vote
0answers
86 views

DirectSound: how to change the input volume of a microphone?

Hi, I have some questions about Directsound and windows mixers. My goal is to enumerate all microphones and be able to change the input volume of each one. I think i'm not far from the solution, but …
1
vote
2answers
192 views

DirectX.Sound in WPF

I wish to play Tones in WPF from a sound card device (not system speaker). Im disappointed to find that apart from playing a beep or a wav file WPF does not have any native way to play simple sound …
0
votes
0answers
30 views

How to extract an MP3 from a SWF in ActionScript 2.0

I am in need of playing multiple sound files one after the other. The problem is that I cannot use MP3 due to firewall issues and must use a SWF with the sound embedded into it. The problem is that …
0
votes
0answers
548 views

Acoustic Echo Cancellation (AEC) with Speex and DirectSound

I am trying to perform Acoustic Echo Cancellation (AEC) with the Speex codec library. According to the Speex documentation, I need to perform two calls: speex_echo_playback(echo_state, echo_frame); …
1
vote
3answers
528 views

Interpretation of DirectSound buffer elements from mic capture device

I am doing some maintenance work involving DirectSound buffers. I would like to know how to interpret the elements in the buffer, that is, to know what each value in the buffer represents. This data …
3
votes
4answers
823 views

Sound processing: Should I use DirectSound or directly Win32 APIs?

I'm making an application where I will: Record from the microphone and do some realtime processing on the input Play an MP3 file (a regular song), but manipulating the output in realtime Every now …
0
votes
3answers
215 views

DirectSound/FFDShow without a Sound Card

I've got an application that uses DirectShow/DirectSound which plays videos and extracts the video/sound. Running it on a server without a soundcard means the audio cannot be grabbed, is there a way …
3
votes
2answers
1k views

How do I process the microphone input in real-time?

I'm starting to create a proof of concept for an idea I have, and at this point, I need some guidance as to how I should begin. I need to sample the microphone input, and process that signal in …
1
vote
1answer
171 views

What is the best DirectSound specific book for .NET?

I'm looking for the best single book for implementing DirectSound solution with .NET (C# preferred). If I had 1 book to buy, it would be this one. It can be overall DirectX, but I will only care …
3
votes
5answers
1k views

Is DirectSound the best audio abstraction layer for Windows?

Is DirectSound the best audio abstraction layer for Windows? Switching my app from a very bad sound implementation, built to a specific chipset, to an abstration layer. App is native Winform, .net …
1
vote
2answers
1k views

Why do some wav files play in my c# directsound app but some don’t?

Hi, I've got a c# application that plays simple wav files through directsound. With the test data I had, the code worked fine. However when I used real-world data, it produced a very unhelpful …