-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from singalsu/eq_add_mic_calibration_import
EQ Tool: Add calibration data import
- Loading branch information
Showing
2 changed files
with
128 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
rec.ssh = 0; % Set to 1 for remote capture | ||
rec.user = ''; % Set to user@domain for ssh | ||
rec.dir = '/tmp'; % Directory for temporary files | ||
rec.dev = 'hw:0,0'; % Audio capture device | ||
rec.nch = 2; % Number audio capture channels to use | ||
%% Recording device configuration | ||
|
||
rec.ssh = 0; % Set to 1 for remote capture | ||
rec.user = ''; % Set to user@domain for ssh | ||
rec.dir = '/tmp'; % Directory for temporary files | ||
rec.dev = 'hw:0,0'; % Audio capture device | ||
rec.nch = 2; % Number audio capture channels to use | ||
|
||
% Use '' if calibration is not needed. Otherwise set to | ||
% e.g. '1234567.txt'. Such calibration data format is supported for | ||
% some reasonably priced measurement microphones. The ASCII text | ||
% calibration data file is the measured frequency response of the used | ||
% microphone. Lines in the beginning those start with character " are | ||
% treated as comment. The successive lines should be <frequency> | ||
% <magnitude> number pairs. Their unit must be Hz and dB. | ||
rec.cal = ''; |