(8.D.2.6) Processing audio through Audio Weaver Design using MATLAB
Â
About This Guide
This application note describes ways to process input audio through Audio Weaver Design (AWD) using MATLAB scripts.
How to load a system
There are two ways to load an Audio Weaver Design (AWD): -
Load from file: Use the following command to load an AWD from a file on the computer.
GSYS = load_awd(fullfile(dirStr, ‘Example.awd'));
Grab from the AudioWeaver Designer : This is a quicker method of opening the AWD for this command to work, AudioWeaver Designer should be open.
GSYS = get_gsys;
Configure the for Non-Real Time Processing
The AudioWeaver Server searches for a specific command to configure a Real Time vs a non-Real Time System.
For a Non-Real Time, the following command is set to 0 which by default on 1 for assuming a Real Time System by default.
SYS.targetSpecificInfo.RT = 0;
Setting Internal Build Settings
Internal Settings to match the Designer.
Specify the Datatype to match the designer.
Validate Top Level Input Pin
Validate Top Level Out Pin
Validate Top Level Block Sizes
Â
The following command can be used to set the designer settings.
Â
Building the System on Designer
The following command is used to build the system with the above-mentioned settings.
Â
Â
Example – AutoAmp
The Application Note has attached .m file along with AutoAmp_Example.awd as examples for the audio processing. In this example a signal test chirp is generated between 100Hz - 20kHz.
Â
Â
Output Processing
The processing can be configured by changing the number of audio blocks to 100 or varying it according to the block size in the AWD. The output plot for 100 blocks is as shown.
Â
Â
Â
Â
Â