DirectSound is a software component of the multimedia API collection known as Microsoft DirectX. It is geared to play audio.

learn more… | top users | synonyms

0
votes
1answer
29 views

in directsound, for IDirectSoundBuffer, which method to be in charge of write position of buffer.

In directsound, we know, call IDirectSoundBuffer::getcurrentposition(), would get the play-position and write-position in the directsound buffer.But i think copy data into buffer should change the ...
1
vote
0answers
25 views

C# DirectSound Buffer.Write() Argument Exception (DirectX SDK June 2010)

Has anyone here ever worked with DirectSound buffers? I'm trying to get a continuous circular buffer going by using a timer to write new data to the buffer every time a % of it has been played. I'm ...
0
votes
1answer
37 views

Enabling and disabling playback and recording devices

I am a newbie in c#..Please dont get annoyed by my question if its kinda silly one.. I need to see the disabled playback and recording devices by c# code and want to enable or disable it as per my ...
1
vote
1answer
70 views

How can I make this code play the wave file for longer?

I couldn't figure out how to create my own sound player, so I have opted to use one from ChiliTomatoNoodle's framework. The issue I'm having, however, is I have a 180s wave file, that's only playing ...
3
votes
1answer
94 views

How to read bytes from a .wav file vb.net

I'm trying to do some work with .wav files and I've been able to play the files and play sound randomly by creating an array of bytes (see code for both below) I'd like to know if there's a method I ...
-2
votes
2answers
72 views

How to draw a waveform of a .wav file

I have a very specific question. I'd like to know precisely how to draw a waveform for a .wav file. Even more specifically I need help on getting the waveform x and y co-ordinates from the wav file, ...
2
votes
1answer
65 views

C++ - DirectSoundBuffer stop playing at specific location - no notifications

I'm using DirectSound's DirectSoundBuffer to play voice data that I am streaming over a network. The nature of voice/speech is that it doesn't necessarily constantly stream (it starts and stops) and ...
0
votes
1answer
172 views

Should I use DirectSound or WASAPI for my audio project?

I am starting a project where minimum requirements will be Windows 7. I'll be using NAudio as my interface to audio. I am not sure what I should be using: DirectSound or WASAPI? I am going to be ...
0
votes
1answer
140 views

Directsound logarithm volume to linear volume slider

I am developing an music player with DirectX.DirectSound. I have a problem with the volume. The directsound volume is logarithm. This means that with silent sounds, is much more sensitive to small ...
0
votes
0answers
35 views

Play sound buffer from multicast with DirectSound

I'm working on a video/audio conference p2p system. I've already done the one to one streaming,fully synchronized.On a receive thread i wait for audio packets which can arrive from any user who joined ...
0
votes
0answers
173 views

Application works in visual studio but release/debug exe does not

I am making a game using dx11. When I compile and run the code in visual studio it works fine however if I try and run the code from the .exe file in either the debug or release folders I got the ...
0
votes
0answers
12 views

How i can take audio-data from each process and put into 2 different files

I have 2 processes in Windows, for example, WinAmp and Foobar2000 (in true i want to have two DirectX-games). both processes creating sound, which mix and put into audio-device. how i can take ...
0
votes
0answers
180 views

Value does not fall within the expected range in Microsoft.DirectX.DirectSound;

I am developing a music player with managed code and I am using Microsoft.DirectX.DirectSound. I am getting this error "Value does not fall within the expected range" when I calling play method. So, ...
0
votes
1answer
85 views

Directsound stream synchronisation

I have a question regarding the synchronization of 2 Directsound streams. To record and play sound I currently use Portaudio to open 2 Directsound streams. There are 2 callback functions which are ...
0
votes
1answer
145 views

How to select sound device to play sounds?

I have a webbrowser in my form, I want to choose where I want to listen the sounds. I have 2 playback devices, Speakers and Headphones. I want to make a combobox to select the output of the sounds of ...
2
votes
2answers
277 views

Memory dump analysis (application hang)

I am attempting to analyze a memory dump that I received from one of my end users after a hang occurred in my application. It seems to be related to the audio playback portion of my application. I ...
0
votes
0answers
42 views

Synthesiser in VB.net

I am trying to create a synthesiser in vb.net and am trying to use the DirectX SDK and/or NAudio or XAudio2 Dll libraries to create the main raw waveforms i.e Sine, square, triangle, saw etc but am ...
0
votes
0answers
71 views

How to update the write cursor in DirectSound streaming buffer

I'm using DirectSound to play the PCM data captured from a video card.(Decklink HD) Wow there are many questions. But I'll ask a portion (the biggest for me) of them. Here's the code. What I'm trying ...
0
votes
0answers
78 views

DirectSound playback notifications issue

There is a little problem with notification triggering in DirectSound. I created two events, which must occurs when cursor reaches 80-th and 160-th bytes respectively: g_hEvents[0] = ...
1
vote
1answer
36 views

Is DirectSound supported on Mono?

I'm writing an application in .NET2.0 (i have to support legacy equipment) that will use DirectSound. There is a possibility that I will need to port the codebase to Mono to run on some Linux ...
1
vote
1answer
130 views

Can I use directsound on VS2010 with C# on Window8 OS?

I tried to install the xna 4.0 but there was some error on windows8. Which version of Directx SDK can I use for C#? I also tried to install the DXSDK_Jun10, however I could not find any reference in ...
0
votes
1answer
64 views

Two questions about DirectSoundFullDuplexCreate8

I'm using DirectSoundFullDuplexCreate8 for recording and, under certain circumstances, playback under Win 7. I have a couple of questions. One is very simple- will FullDuplex work with all audio ...
0
votes
1answer
146 views

Exception on Resampling

When I using ResamplerDmoStream and selecting Anything except WaveOutput (e.g. WASAPI, DirectSound) I've getting below exception: Unable to cast COM Object NAudio.DMO.ResamplerMediaComObject to ...
1
vote
0answers
196 views

Directsound: how to create a secondary buffer using SecondaryBuffer(Stream,BufferDescription,Device) constructor?

I'm trying to create a static secondary buffer which receives sound data from an array not from a file. so i want to use the SecondaryBuffer(Stream,BufferDescription,Device) constructor but i don't ...
1
vote
1answer
228 views

How can I play a .wav file using SharpDX DirectSound in a C# WPF project?

I want to be able to precisely control the timing of .wav files played in my program. I also want to be able to play more than one .wav file at the same time. The SoundPlayer was not good enough ...
0
votes
0answers
156 views

Removing and attaching USB audio Jabra headset on Windows 7 SP1 can cause problems with network. How to investigate it?

I work on specialized voip application. It uses TLS as signalling channel and (S)RTP as media channel in calls. There is a audio output module written that uses DirectSound to play & capture. ...
0
votes
0answers
207 views

Synchronize sound stream with video stream

I'm working on a video/audio conference project and i have the next problem: I record sound with DirectSound and send through the network(multicast) everytime the audio buffer is full(aprox. 200 ...
0
votes
0answers
65 views

DirectSoundCaptureCreate8 fails with DSERR_NODRIVER on Windows XP

Anyone knows a reason for a DirectSoundCaptureCreate8 call to fail with DSERR_NODRIVER only on Windows XP? It does not matter which device I'm using. If I call this function passing NULL as the GUID, ...
1
vote
0answers
262 views

Playing Mono encoded audio out rear channels through SlimDX XAudio2 when Sound Card only reports Channel Mask of 3

I had an older system (XP) that allowed me to play mono encoded PCM audio out the rear channels (back right and/or back left) through DirectX using a DirectSoundBuffer and WAVEFORMATEXTENSIBLE object ...
0
votes
0answers
47 views

Configuring Synthesis Tool Kit Library in Visual Studio 2010?

I want to try some audio processing in C++, so I downloaded this library but cannot find how to configure it in visual studio 2010. Should I try DirectSound library of Microsoft? Which would be ...
0
votes
1answer
1k views

Will DirectSound run on Windows 8?

I'm referring to DirectSound, a component of DirectX 9.0c. I know the MediaElement is the preferred audio class but it does not provide some of the DirectSound audio function that my app needs, ...
0
votes
1answer
398 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
1answer
30 views

occasional new LPDIRECTSOUNDBUFFER8 bad_alloc

I am getting an occasional "C++ exception: std::bad_alloc at memory location" with the following code. LPDIRECTSOUNDBUFFER8* ppDirectSoundBuffer; ppDirectSoundBuffer = new LPDIRECTSOUNDBUFFER8[1]; ...
0
votes
1answer
299 views

Program crashes when using Managed DirectX with .Net Framework 4.0

We are having a problem using DirectSound with the Managed DirectX dlls and the .Net Framework 4.0 The program works fine with .Net Framework 2.0 - but we have a requirement to upgrade to 4.0 to use ...
0
votes
1answer
523 views

C# DirectSound DirectSoundBuffer.SetVolume E_NOINTERFACE

I am writing a DirectSound wrapper for my audio libary. I came across directsound and it works very well. That means audio playbacks works perfectly much better than waveout and so on. But now i have ...
0
votes
2answers
332 views

Does DirectSound usually support echo cancellation and noise reduction?

I'm currently using the waveInOpen set of Windows API functions to record audio for a VOIP application. I'm now being asked to add echo cancellation, and possibly noise reduction, and gain control. ...
0
votes
0answers
529 views

DirectSound: simple pcm playing

I'm playing with DirectSound and trying to play simple random wav data with following code: int _tmain(int argc, _TCHAR* argv[]) { LPDIRECTSOUND8 dsound; WAVEFORMATEX format; const int ...
2
votes
2answers
524 views

Receiving audio data from multiple sources and merging them into a wave file

I'm using C# and DirectSound to record audio and send it across a local network to another computer that receives the data and saves it into a wave file. I used similar code for recording and ...
1
vote
0answers
122 views

Getting real / physical / hardware samplig rate of sound card

I need to get real / physical / hardware (don't know the word) samplig rate of my soundcard. I'm generating High frequency square sound wave and playing it using DirectSound. I need to match ...
-1
votes
1answer
148 views

How to configure DirectSound's MaxSampleRate above 20000

I'm programming small program to output generated sound. My sound card is capable of a 48000 or even 192000 sample rate. Its a Realtek ALC883 7.1+2 Channel High Definition Audio, and the specs can ...
0
votes
3answers
555 views

DirectShow GetDuration gives wrong duration value

I am trying to get media file duration with DirectShow. I use following code (C#): var seekingParser = filter as IMediaSeeking; if (seekingParser != null) { long duration; if ...
0
votes
0answers
283 views

dsound.dll format not recognized

I'm having a lot of trouble implementing DirectSound into a program I'm making, so if DirectSound is outdated or unused or something and there is a better way to play multiple sounds at once please ...
1
vote
1answer
411 views

How to play sound in MFC using Visual C++?

I would like to implement base band signal processing algorithms on my PC using my microphone input and speaker output. Which library do I need to use open/read/write audio equipment on Windows 7 64 ...
0
votes
1answer
453 views

sal.h not including when it is in Path

I'm working on implementing DirectSound into a program, but it requires dsound.h which requires sal.h, and for whatever reason I'm having trouble getting g++ to recognize the fact that I have sal.h ...
16
votes
1answer
294 views

How to make my application be considered as a communication program in Windows

I'm making a program that uses the Speech library and I'd like to get all other sounds muted or reduced when the lady is talking. I've been looking for a way to mute other applications manually, but ...
0
votes
1answer
854 views

Playing Wav with Directsound

I need to play multiple wave files which start at different times (not all together). I was trying to play the files using Directsound but a problem arised. I have the following code: var dev = new ...
1
vote
1answer
185 views

I hear clicking in audio with a DirectShow graph created with Graph Edit yet player software on my PC plays audio smoothly

I have a DirectShow application that I built with Delphi 6 using the DSPACK component library. For two days I have been trying to solve a problem with audio playback. When I run the filter graph I ...
0
votes
2answers
382 views

How to avoid the silent tickeling noises when streaming sound from microphone to speakers using DirectSound and C#?

I try to stream sound samples from my microphone to my speakers by using DirectSound and C#. It should be similar to 'listening to microphone', but later I want to use this for something else. By ...
0
votes
1answer
165 views

Create a sound from scratch in DirectSound

Is there a way to create a sound from scratch using DirectSound, e.g play the notes a c, d, e, f,g etc? However, the sound must be realistic, and sound at least a little like a proper sound. Thanks. ...
0
votes
0answers
106 views

DirectSound OutOfMemoryException after 2-3 songs

i have a program that play some songs be a schedule. But a receive an OutOfMemoryException after 2-3 songs. I use AumpLib to convert mp3 songs in wav for the buffer(ths songs are saved on the disks ...

1 2 3