Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change default sound playback device programmatically?

How to change the default default audio device for playback and recording in vista programmatically ?

Is there any registry setting for it like sound manager in window XP?

Which API does it?

like image 576
Ashish Avatar asked Feb 01 '10 07:02

Ashish


1 Answers

System Tray Audio Device Switcher uses "Software\Microsoft\Multimedia\Sound Mapper", "Playback" to set the index of the sound device which was obtained by enumeration the devices. mciSendCommand from "winmm.dll" is also used

In this source code you will find the registry keys used to achieve that.

If this doesn't work you could give Process Monitor a try and monitor all registry activities of windows when you change the default device. On my Vista installation the control panel twiddles with "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\MMDevices\Audio\Render\"

For Vista see http://www.vistaaudiochanger.com/

like image 146
stacker Avatar answered Oct 16 '22 03:10

stacker