Hook to WM6 sound - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T04:17:51Zhttp://stackoverflow.com/feeds/question/322988http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/322988/hook-to-wm6-sound0Hook to WM6 soundDacto2008-11-27T05:21:10Z2009-11-27T16:00:03Z
<p>How can i hook to the window mobile sound (driver?) and read the data while it is passing it to the speaker.</p>
http://stackoverflow.com/questions/322988/hook-to-wm6-sound/366101#3661010Answer by ctacke for Hook to WM6 soundctacke2008-12-14T02:46:54Z2008-12-14T02:46:54Z<p>While creating a new wavedev audio driver might do what you want (it's not 100% clear how you want to acheive your goal) what you're probably after is the <a href="http://msdn.microsoft.com/en-us/library/ms705739.aspx" rel="nofollow">Mixer API</a>. You might take a look at <a href="http://blogs.msdn.com/medmedia/archive/2007/01/12/what-do-you-mean-by-mixer.aspx" rel="nofollow">Andy Raffman's blog on audio mixer terminology</a> to see where your needs lie.</p>
<p>DirectSound used to be an option (4.2 and earlier) but was <a href="http://msdn.microsoft.com/en-us/library/aa446919.aspx" rel="nofollow">removed in 5.0</a>.</p>