Audio Capture with DirectShow - Part 3






4.60/5 (7 votes)
A console program that captures audio and saves it with simultaneous preview.
Introduction
This tutorial is the final part of the three part tutorial on audio capture with DirectShow. This part uses the infinite pin tee filter to provide preview (pre-listen) while saving the file.
Background
Since I have written two other tutorials which are the building grounds for this one, they should be read through thoroughly. Following are the other two tutorials:
Using the code
The only code that is extra from the second part of the tutorial is that of the infinite pin tee filter. The filter connects with the audio input, and the outputs of the tee filters connect with two filters, the AudioRecorder WAV Dest filter and the speakers, and in my case, the headphones, too.
Following is the code where the filter is read, added to the graph, and the connections are made:
//Infinite Pin Tee filter
// the DirectShow filters category
DEVICE_CLSID = CLSID_LegacyAmFilterCategory;
// device name as seen in Graphedit.exe,
// using SysAllicString(..) to properly allocate string
bstrDeviceName = SysAllocString(L"Infinite Pin Tee Filter");
//read the required device
pDeviceMonik = Device_Read(pDeviceEnum,pDeviceMonik,
DEVICE_CLSID,bstrDeviceName);
//Return the device after initializing it
pPinTeeFilter = Device_Init(pDeviceMonik,pPinTeeFilter);
//add device to graph
Device_Addition(pGraph,pPinTeeFilter,bstrDeviceName);
//Connect input to output, Mic to Infinite Pin Tee filter
//Input pin name, as seen in GraphEdit
bstrInPinName = SysAllocString(L"Capture");
//Output pin name, this one will be input for Infinite Pin Tee Filter
bstrOutPinName = SysAllocString(L"Input");
//connect
Device_Connect(pInputDevice,pPinTeeFilter,bstrInPinName,bstrOutPinName);
//Connect input to output, Infinite Pin Tee filter
//to AudioRecorder WAV Dest filter
//As seen in GraphEdit
bstrInPinName = SysAllocString(L"Output1");
//Output pin name
bstrOutPinName = SysAllocString(L"In");
//connect
Device_Connect(pPinTeeFilter,pWAVRecorder,bstrInPinName,bstrOutPinName);
///Connect input to output, Infinite Pin Tee filter to Default
//sound output i.e. headphones or speakers etc.
//As seen in GraphEdit
bstrInPinName = SysAllocString(L"Output2");
//Output pin name
bstrOutPinName = SysAllocString(L"Audio Input pin (rendered)");
//connect
Device_Connect(pPinTeeFilter,pOutputDevice,bstrInPinName,bstrOutPinName);
After the connections are made, we are ready to go. The run()
method kick starts the graph.
Final word
I hope this small series of tutorials on getting to know the use of DirectShow filters would be helpful for beginners. I deliberately broke apart the whole process into three steps so that a newbie could have a better insight at how, at each step, things are built around filters. How filters are read, instantiated, connected, and finally used to do something useful for us. To be honest, when I started DirectShow programming, it was very difficult to get to a starting point. MSDN tells a lot about filters, but I personally found MSDN quite hard to grasp as you need to loop back into your past to get a grasp of what is being explained.
I enjoyed my journey here, I hope you did too. Thanks for all your time!
The code is built with the following
- Windows Server 2008
- Microsoft Visual Studio 2008
- DirectX 10.1
- Microsoft Windows SDK 6.1
References
History
- 08/02/2008: Article update.
Fixed Bstr_Compare(...)
that correctly compares two BSTR
type strings.