• WANTED: Happy members who like to discuss audio and other topics related to our interest. Desire to learn and share knowledge of science required. There are many reviews of audio hardware and expert members to help answer your questions. Click here to have your audio equipment measured for free!

dorirod

Active Member
Joined
Oct 9, 2019
Messages
249
Likes
249
Hi,

I was able to load the Sony WH-1000XM4 127 band GEQ into the Wavelet App. One funny thing is that when you import a file, it goes into the list and then you have to search for it and select it. I was confused at first because I assumed that importing the file would automatically select it. Nope, it is a 2 step process.
[/SPOILER]

Arggh, yes, not funny, just not a good UI, had no idea you had to search! Thank you, I got it working as well.
 
OP
sweetchaos

sweetchaos

Major Contributor
The Curator
Joined
Nov 29, 2019
Messages
3,872
Likes
11,550
Location
BC, Canada
Hello. Where can I find 31 band equalizer settings for Hifiman Sundara?
As far as I know, no one (besides me) shows a 31-band GEQ profile. :eek:

jaakkopasanen only shows a 10-band GEQ profiles on this website:
https://github.com/jaakkopasanen/AutoEq/blob/master/results/INDEX.md

There are multiple GEQ/PEQ profiles that jaakkopasanen generates, based on various sources (like Oracle, Crinacle, etc).

Since there's multiple sources, jaakkopasanen recommends the following order:
oratory1990 > Crinacle > Innerfidelity > Rtings > Headphone.com > Reference Audio Analyzer.
To answer your question, there are 2 ways:
1. Follow my guide in the beginning of this thread.
Where you select a PEQ profile you like to use, and run it against AutoEQ.
2. A quick and dirty way....is to follow my other guide here.
Which won't require any coding. ;)

Although I haven't compared the two method against each other, so I can't say to the effectiveness of one vs another.
 

Jimbob54

Grand Contributor
Forum Donor
Joined
Oct 25, 2019
Messages
11,066
Likes
14,697
This is a Graphic Equalization (GEQ) guide based on Amir's excellent headphone reviews!
If you're looking for Parametric Equalization (PEQ) guide, see my previous post.

Inspiration for this thread:
1. I wanted a way to import Amir's PEQ profiles into Android app 'Wavelet' (which only supports GEQ profiles).
2. I realized that 'AutoEQ' (the algorithm I need to make this happen) can also generate a 10-band GEQ profile, which means I can "convert" Amir's PEQ into GEQ.

What's another name for Graphic Equalizer (GEQ)?
- Also known as "Fixed Band Equalizer", but in this guide I'll only use "Graphic Equalizer" (GEQ) to keep things simple.

What are the frequencies that a typical 10-band GEQ profile uses?
32,64,125,250,500,1000,2000,4000,8000,16000
Later, we'll use this for our 10-band GEQ profile.

What is 'Wavelet'?
'Wavelet' is a popular Android app, with +100,000 installs. (Link to Google Store)
By default, it supports 2 functions:
1. 9-band GEQ (default frequencies are 75,150,300,600,1200,2400,4800,9600,19200), which you can use to manually enter filters into.
2. A database of over +3196 headphone with pre-calculated GEQ profiles. If you select a popular headphone, like Sennheiser HD800S, from this list (inside Wavelet), the application looks at this database, and automatically loads the following file into your phone's storage/memory. In reality, this is a 127-band GEQ profile, which is much more accurate than a 10-band GEQ. How do I know? Well, if the app allows you to manually import a similar profile, then the app must do the same by default.

How did I convert Amir's PEQ profile to a compatible format to be imported into Wavelet?
1. Using my created PEQ profile for each headphone. Ex: Hifiman HE400i 2016

2. Import into 'Peace'. I chose 'Peace' instead of 'Equalizer APO' because 'Peace' has a much better resolution graph, which I'll need for the next steps.
This shows a smallest possible resolution image, for demonstration purposes.
3. I opened this chart on my 4k resolution monitor, in order to capture the best possible resolution. Took a screenshot as a 'PEQ.png"
4. Opened the "WebPlotDigitizer" website, which allows anyone to digitize a graph and export the data points as x-y coordinates.
5. In WebPlotDigitizer, File>Open Image, loaded "PEQ.png"
6. Selected "2D (X-Y) Plot", hit "Align Axes", hit "Proceed", select points X1 (on bottom left at 10hz), X2 (on bottom right 20000hz), Y1 (on bottom left at -15dB), and Y2 (on top left at 15dB) points of the graph.
Example:
7. Hit "complete"
8. Enter
x: 10hz, y: 20000, log scale: on
x: -15, y:15, log scale: off
Which of course, correspond to the points on the graph.
9. Hit "OK", then change "Foreground Color" from "Blue" to "Green" (because the website needs to understand what's the colour of the main plot). Hit "Done"
10. Change 'Algorithm Averaging Window':
X: 2
Y: 2
Note:
Default was 10, which is the sampling frequency.
If you run it with 10, the algorithm collects ~381 data points.
To increase your sampling rate, I first tried "1", which resulted in ~3119 data points. But later I ran into an issue where duplicate entries prevented 'AutoEQ' code from running (and only fixable until you remove those duplicate entries).
So I decided to stick with "2", which gave me ~1363 data points. When later running AutoEQ, it runs mostly fine, but sometimes it reports 1 data point (which is like 0.07% error rate) that is duplicate. I used Excel's "Remove Duplicates" function to remove any. I believe this sampling frequency becomes acceptable to use.
It's probably overkill... but I want the best possible accuracy.
11. Now that the algorithm found the data points, we need to export this into .CSV (or .txt works as well). Hit "View Data", then "Download .CSV".
I saved to Desktop for now.
12. Hit "Close", then File> "Save Project", hit "Download Project File (.tar)". I wanted to do this, because I could load the file next time I come back to WebPlotDigitizer, without repeating my steps, and for a backup.
13. Now, we need to install 'AutoEQ'. I followed the steps to install the required dependencies, in Windows 10.

How to use 'AutoEQ' to generate the necessary files?
In Windows 10, cmd:
Code:
cd AutoEq
venv\Scripts\activate.bat
Here's the final working code I created:
Code:
python autoeq.py --input_dir="my_input/" --compensation="my_data/Hifiman HE400i 2016/Hifiman HE400i 2016.csv" --output_dir="my_results/Hifiman HE400i 2016" --equalize --treble_f_lower 18000 --treble_f_upper 20000 --fixed_band_eq --fc=32,64,125,250,500,1000,2000,4000,8000,16000 --q=1.414214

Let me break down the code:
1. python autoeq.py
This runs the script
2. --input_dir="my_input/"
I first created a 'my_input" in the "C:\Users\user\AutoEq\" folder.
From the "compensation" directory, I copied the file called "zero.csv" and pasted into "C:\Users\user\AutoEq\my_input". File "Zero.csv" is simply the flat frequency compensation curve. In other words, it's just frequency and '0' gain for all frequencies. We need this file, since the algorithm needs to know what preference curve you're running it against.
3. --compensation="my_data/Hifiman HE400i 2016/Hifiman HE400i 2016.csv"
I first created a directory for each headphone in the "C:\Users\user\AutoEq\my_data" folder. Then I placed the "Hifiman HE400i 2016.csv" which is the csv file I got from 'WebPlotDigitizer' earlier.
Each time I ran this script, I change the directory and csv filename.
4. --output_dir="my_results/Hifiman HE400i 2016"
Each time I ran this script, I change the final directory, such that the resulting files are not mixed up with other headphones.
5. --equalize
This will run the algorithm in order to create the 127-band GEQ profile, which is formatted properly for direct import into 'Wavelet'.
6. --treble_f_lower 18000 --treble_f_upper 20000
This was recommended by jaakkopasanen. The reason was:

Without this code, my final generated GEQ had different gain for each peak, which was wrong. The addition of this code fixed the issue.
7. --fixed_band_eq --fc=32,64,125,250,500,1000,2000,4000,8000,16000 --q=1.414214
I added this code in order to generate a '10-band GEQ profile'.
You can see the 10-band frequencies I mentioned earlier.
Read my post #13 to understand the calculation to find "q-factor of 1.41214".

What's the end result of this?
In the "my_results/Hifiman He400i 2016" directory, the following files get generated:
We can delete 'readme.md', 'zero.csv', and 'zero.png', as they serve no purpose for us.
1. "zero FixedBandEQ.txt" which is the the 10-band GEQ profile that can be imported into any app that supports GEQ profiles:

First of all, the format doesnt matter, since we won't be using this 'Equalizer APO' format, since this data will be entered into other apps.
Sometimes you'll see gain values like 0.0, -0.0, 0.1, or -0.1.
I'm guessing that the accuracy of the algorithm is allowing such fluctuations, but in reality the gain is just '0'. So feel free to ignore those, and assume '0'.
We can extract the 10-band values visually...
Frequency (hz), then gain (db):

If the software asks for a preamp, apply -4.3 dB. Otherwise, not all software will require this value, as some software can do this for you automatically.
2. "zero GraphicEQ.txt", which is the "Wavelet" only compatible format. This is a 127-band GEQ profile.

As you can see, it's just Frequency and Gain, 127 times.

How to import the 127-band GEQ profile into Wavelet?
1. Wavelet documentation says you can manually import the 127-band GEQ profile.
2. Here's a guide from a user @ t$$ on post #40.

Are you sure this 127-band GEQ profile is accurate enough? In other words, how does it compare with the original Amir's PEQ profile?
That was my first question as well.
1. I opened the 127-band GEQ profile into 'Equalizer APO', so I can visually see it on a graph. Then scaled to an appropriate size.
2. I opened Amir's PEQ profile into 'Peace', and scaled to the same vertical scale. (I used a screenshot tool to see how many pixels between 15dB scale).
3. To compare the 2 files, I used "Gimp" application for Windows. Since I know my vertical scale was correct (from previous step), I just positioned the images such that they overlap and one image had 50% transparency.
Here's the results:
The green line comes from the original 'Peace' app.
The black line comes from the overlaid 'Equalizer APO' app.
As you can see, the accuracy is impeccable.
I think it's safe to say, this was a success.

Are you really sure they're the same?
Here's another random headphone I tested (Philips Fidelio X2HR).
As you can see, they overlap perfectly. There's no doubt.

_____________________
UPDATE:
Added 31-band GEQ profile.

A lot of professional equipment uses 31-band GEQ profiles with frequencies:
20,25,31.5,40,50,63,80,100,125,160,200,250,315,400,500,630,800,1000,1250,1600,2000,2500,3150,4000,5000,6300,8000,10000,12500,16000,20000

To do this, I had to re-run the code for the 31-bands and using q=4.472136 (as I've explained on post #13).
Code:
python autoeq.py --input_dir="my_input/" --compensation="my_data/Abyss Diana V2/Abyss Diana V2.csv" --output_dir="my_results/Abyss Diana V2" --equalize --treble_f_lower 18000 --treble_f_upper 20000 --fixed_band_eq --fc=20,25,31.5,40,50,63,80,100,125,160,200,250,315,400,500,630,800,1000,1250,1600,2000,2500,3150,4000,5000,6300,8000,10000,12500,16000,20000 --q=4.472136

Example of Abyss Diana V2:

See what I mean by 0.0, -0.0, 0.1, -0.1?
Let's clean it up:

_____________________
How to upgrade Foobar2000's (for Windows) 18-band non-standard GEQ (with +-1dB gain adjustments), to a 31-band standard GEQ (with +-0.1db gain adjustments)?
By default, Foobar2000 comes with 18-band GEQ (with +-1dB gain adjustments) with frequencies 55,77,110,156,220,311,440,622,880,1200,1800,2500,3500,5000,7000,10000,14000,20000.
2 problems are... A) these 18-band GEQs are non-standard and are less frequently used as 10 or 31 band and B) they only allow +-1dB increments, which is non-standard as everyone uses +-0.1dB increments, for more accuracy.
1. Get the free addon "Graphic Equalizer" from https://www.foobar2000.org/components/view/foo_dsp_xgeq
2. Download, save .zip to desktop
3. Foobar2000, file, preferences, components, select "install" button, select .zip from desktop, "apply", it will restart Foobar
4. To adjust GEQ, go to View, 'Graphic Equalizer', you'll see the 31-band GEQ (with +-0.1db gain adjustments).
Note: The original GEQ is still there, just under View, DSP, Equalizer.
_____________________
How to change VLC (for all platforms) default 10-band non-standard GEQ to a standard 10-band GEQ?
By default, VLC comes with a 10-band GEQ profile, with frequencies 60,170,310,600,1000,3000,6000,12000,14000,16000
But this is non-standard and won't match with the typical ISO standard with frequencies 32,64,125,250,500,1000,2000,4000,8000,16000.
To fix this, go to:
1. Preferences
2. Show "All" settings (on the bottom left)
3. Select "Audio" Tab, then "Filters" sub-tab, then "Equalizer" Tab
4. Disable the option "Use VLC frequency bands".
Now you can use the typical 10-band GEQ with frequencies 32,64,125,250,500,1000,2000,4000,8000,16000

_____________________
Disclaimer:
I'm not in any way affiliated with @jaakkopasanen , AutoEq, or Wavelet.
This was my own idea and I planned to accomplish this project with the available free tools.
I see value in 'Wavelet' as a one-stop-app for automatic EQ'ing of headphones (which is how apps should function like), so I decided to generate a way to import into Wavelet.
My guide allows everyone to import Amir's EQ profiles into Wavelet, which wasn't simple to do (unless you did what I did, haha).
I'm sharing my work for the benefit of others who seek to use Amir's headphone PEQ values, but cannot, since software doesn't allow PEQ.
Now, you can enter Amir's GEQ profiles into your favorite GEQ software, as well as import directly into 'Wavelet'.
_____________________

Amir's Headphone GEQ profiles (sorted A-Z):

Each Headphone shows:
- 10-band GEQ profile. 1st line is Preamp, then Frequency (hz) and Gain (db). Import into your favorite app.
- 31-band GEQ profile. 1st line is Preamp, then Frequency (hz) and Gain (db). Import into your favorite app.
- 127-band GEQ profile. Import into Wavelet app.

Abyss Diana V2:
Preamp: -6.1dB
32 6.1
64 -0.6
125 0
250 0
500 0.3
1000 -1.9
2000 0.6
4000 1.8
8000 -0.8
16000 0
Preamp: -8.0dB
20 4.7
25 5.2
32 3.6
40 2.2
50 1.0
63 0.3
80 0
100 0
125 0
160 0
200 0
250 0
315 0
400 0
500 0
630 0
800 -0.3
1000 -1.1
1250 -1.9
1600 -0.5
2000 0
2500 1.8
3150 1.9
4000 2.5
5000 -1.6
6300 -0.5
8000 0
10000 0
12500 0
16000 0
20000 -0.5
GraphicEQ: 20 -0.2; 21 -0.2; 22 -0.2; 23 -0.2; 24 -0.2; 26 -0.4; 27 -0.7; 29 -1.1; 30 -1.3; 32 -1.7; 34 -2.1; 36 -2.5; 38 -2.9; 40 -3.2; 43 -3.6; 45 -3.9; 48 -4.2; 50 -4.5; 53 -4.7; 56 -4.9; 59 -5.1; 63 -5.3; 66 -5.4; 70 -5.6; 74 -5.7; 78 -5.8; 83 -5.9; 87 -5.9; 92 -6.0; 97 -6.0; 103 -6.1; 109 -6.1; 115 -6.1; 121 -6.2; 128 -6.2; 136 -6.2; 143 -6.2; 151 -6.2; 160 -6.2; 169 -6.2; 178 -6.3; 188 -6.3; 199 -6.3; 210 -6.3; 222 -6.3; 235 -6.3; 248 -6.3; 262 -6.3; 277 -6.3; 292 -6.3; 309 -6.3; 326 -6.3; 345 -6.3; 364 -6.3; 385 -6.3; 406 -6.3; 429 -6.4; 453 -6.4; 479 -6.4; 506 -6.4; 534 -6.4; 565 -6.4; 596 -6.5; 630 -6.5; 665 -6.5; 703 -6.6; 743 -6.7; 784 -6.8; 829 -6.9; 875 -7.0; 924 -7.2; 977 -7.5; 1032 -7.7; 1090 -8.0; 1151 -8.2; 1216 -8.2; 1284 -8.0; 1357 -7.7; 1433 -7.4; 1514 -7.1; 1599 -6.9; 1689 -6.7; 1784 -6.5; 1885 -6.3; 1991 -6.1; 2103 -5.8; 2221 -5.5; 2347 -5.0; 2479 -4.4; 2618 -3.9; 2766 -3.8; 2921 -4.1; 3086 -4.5; 3260 -4.5; 3443 -3.7; 3637 -2.5; 3842 -3.3; 4058 -4.7; 4287 -5.6; 4528 -6.0; 4783 -6.3; 5052 -6.8; 5337 -7.8; 5637 -7.7; 5955 -6.8; 6290 -6.5; 6644 -6.4; 7018 -6.3; 7414 -6.3; 7831 -6.3; 8272 -6.3; 8738 -6.3; 9230 -6.3; 9749 -6.3; 10298 -6.3; 10878 -6.3; 11490 -6.3; 12137 -6.3; 12821 -6.3; 13543 -6.3; 14305 -6.3; 15110 -6.3; 15961 -6.3; 16860 -6.3; 17809 -6.3; 18812 -6.3; 19871 -6.5

AKG K371:
Preamp: -2.5dB
32 -0.5
64 -0.3
125 -0.4
250 -0.4
500 -0.4
1000 -0.2
2000 0.7
4000 2.6
8000 -2.6
16000 -0.4
Preamp: -4.2dB
20 -1.0
25 -0.5
32 -0.5
40 -0.3
50 -0.2
63 -0.4
80 -0.4
100 -0.4
125 -0.3
160 -0.4
200 -0.3
250 -0.3
315 -0.3
400 -0.3
500 -0.3
630 -0.3
800 -0.2
1000 0
1250 0
1600 0.4
2000 0.9
2500 0.8
3150 0.9
4000 4.0
5000 0
6300 -2.8
8000 -1.5
10000 -0.4
12500 -0.6
16000 -0.7
20000 0
GraphicEQ: 20 -4.6; 21 -4.6; 22 -4.6; 23 -4.6; 24 -4.6; 26 -4.6; 27 -4.6; 29 -4.6; 30 -4.6; 32 -4.6; 34 -4.6; 36 -4.6; 38 -4.6; 40 -4.6; 43 -4.6; 45 -4.6; 48 -4.6; 50 -4.6; 53 -4.6; 56 -4.6; 59 -4.6; 63 -4.6; 66 -4.6; 70 -4.6; 74 -4.6; 78 -4.6; 83 -4.6; 87 -4.6; 92 -4.6; 97 -4.6; 103 -4.6; 109 -4.6; 115 -4.6; 121 -4.6; 128 -4.6; 136 -4.6; 143 -4.6; 151 -4.6; 160 -4.6; 169 -4.6; 178 -4.6; 188 -4.6; 199 -4.6; 210 -4.6; 222 -4.6; 235 -4.6; 248 -4.6; 262 -4.6; 277 -4.6; 292 -4.6; 309 -4.5; 326 -4.5; 345 -4.5; 364 -4.5; 385 -4.5; 406 -4.5; 429 -4.5; 453 -4.5; 479 -4.5; 506 -4.5; 534 -4.5; 565 -4.5; 596 -4.5; 630 -4.4; 665 -4.4; 703 -4.4; 743 -4.4; 784 -4.4; 829 -4.3; 875 -4.3; 924 -4.3; 977 -4.2; 1032 -4.2; 1090 -4.1; 1151 -4.0; 1216 -4.0; 1284 -3.9; 1357 -3.8; 1433 -3.7; 1514 -3.6; 1599 -3.5; 1689 -3.4; 1784 -3.2; 1885 -3.1; 1991 -3.0; 2103 -3.0; 2221 -2.9; 2347 -2.9; 2479 -2.9; 2618 -2.9; 2766 -2.9; 2921 -2.9; 3086 -2.8; 3260 -2.5; 3443 -1.9; 3637 -1.0; 3842 -0.2; 4058 -0.5; 4287 -1.7; 4528 -2.7; 4783 -3.4; 5052 -3.9; 5337 -4.4; 5637 -4.8; 5955 -5.4; 6290 -6.3; 6644 -7.1; 7018 -7.1; 7414 -6.3; 7831 -5.6; 8272 -5.2; 8738 -5.0; 9230 -4.8; 9749 -4.7; 10298 -4.7; 10878 -4.6; 11490 -4.6; 12137 -4.6; 12821 -4.6; 13543 -4.6; 14305 -4.6; 15110 -4.6; 15961 -4.6; 16860 -4.6; 17809 -4.6; 18812 -4.4; 19871 -4.1

Audeze LCD-X:
Preamp: -4.7dB
32 4.3
64 1.3
125 -0.8
250 -1.1
500 -0.8
1000 -1.7
2000 1.9
4000 3.5
8000 -2.1
16000 -1.7
Preamp: -7.2dB
20 1.4
25 4.0
32 3.6
40 2.8
50 1.9
63 1.4
80 0.7
100 0
125 -0.5
160 -0.8
200 -0.8
250 -0.9
315 -0.9
400 -0.9
500 -0.9
630 -0.9
800 -0.8
1000 -0.7
1250 -0.7
1600 -0.4
2000 0
2500 3.3
3150 6.3
4000 1.2
5000 -0.3
6300 -0.7
8000 -0.9
10000 -1.1
12500 -1.4
16000 -1.9
20000 -2.0
GraphicEQ: 20 -4.0; 21 -3.6; 22 -3.2; 23 -3.0; 24 -2.8; 26 -2.4; 27 -2.3; 29 -2.2; 30 -2.2; 32 -2.2; 34 -2.3; 36 -2.4; 38 -2.6; 40 -2.7; 43 -2.9; 45 -3.1; 48 -3.3; 50 -3.4; 53 -3.7; 56 -3.9; 59 -4.1; 63 -4.3; 66 -4.5; 70 -4.8; 74 -5.0; 78 -5.2; 83 -5.5; 87 -5.7; 92 -5.9; 97 -6.1; 103 -6.3; 109 -6.4; 115 -6.6; 121 -6.7; 128 -6.8; 136 -6.9; 143 -7.0; 151 -7.1; 160 -7.1; 169 -7.2; 178 -7.2; 188 -7.3; 199 -7.3; 210 -7.3; 222 -7.4; 235 -7.4; 248 -7.4; 262 -7.4; 277 -7.4; 292 -7.4; 309 -7.4; 326 -7.4; 345 -7.4; 364 -7.4; 385 -7.4; 406 -7.4; 429 -7.4; 453 -7.4; 479 -7.4; 506 -7.4; 534 -7.4; 565 -7.4; 596 -7.4; 630 -7.4; 665 -7.4; 703 -7.4; 743 -7.4; 784 -7.3; 829 -7.3; 875 -7.3; 924 -7.3; 977 -7.2; 1032 -7.2; 1090 -7.1; 1151 -7.1; 1216 -7.0; 1284 -6.9; 1357 -6.9; 1433 -6.7; 1514 -6.6; 1599 -6.5; 1689 -6.3; 1784 -6.0; 1885 -5.7; 1991 -5.3; 2103 -4.9; 2221 -4.3; 2347 -3.5; 2479 -2.6; 2618 -1.5; 2766 -0.4; 2921 -0.2; 3086 -0.2; 3260 -0.5; 3443 -1.5; 3637 -2.6; 3842 -3.6; 4058 -4.3; 4287 -4.9; 4528 -5.4; 4783 -5.8; 5052 -6.1; 5337 -6.3; 5637 -6.5; 5955 -6.6; 6290 -6.8; 6644 -6.9; 7018 -7.0; 7414 -7.0; 7831 -7.1; 8272 -7.2; 8738 -7.2; 9230 -7.2; 9749 -7.3; 10298 -7.3; 10878 -7.3; 11490 -7.4; 12137 -7.4; 12821 -7.4; 13543 -7.4; 14305 -7.4; 15110 -7.4; 15961 -7.4; 16860 -7.5; 17809 -7.5; 18812 -7.5; 19871 -7.4

Beyerdynamic DT990 Pro:
Preamp: -1.9dB
32 1.5
64 1.1
125 -0.7
250 0.3
500 1.2
1000 1.1
2000 1.4
4000 1.7
8000 -8.1
16000 -2.4
Preamp: -3.5dB
20 1.2
25 0.8
32 1.5
40 1.0
50 1.0
63 0.9
80 0.7
100 0.3
125 -0.4
160 -0.7
200 0
250 0.4
315 0.8
400 0.9
500 0.9
630 1.0
800 1.0
1000 1.0
1250 1.1
1600 1.1
2000 1.0
2500 1.1
3150 1.2
4000 1.9
5000 -2.3
6300 -2.6
8000 -7.2
10000 -4.7
12500 -8.1
16000 -1.4
20000 3.4
GraphicEQ: 20 -0.9; 21 -0.9; 22 -0.8; 23 -0.9; 24 -0.9; 26 -0.9; 27 -0.9; 29 -0.9; 30 -0.9; 32 -0.9; 34 -0.9; 36 -0.9; 38 -1.0; 40 -1.0; 43 -1.0; 45 -1.0; 48 -1.0; 50 -1.1; 53 -1.1; 56 -1.1; 59 -1.2; 63 -1.2; 66 -1.3; 70 -1.3; 74 -1.4; 78 -1.5; 83 -1.6; 87 -1.7; 92 -1.8; 97 -1.9; 103 -2.1; 109 -2.2; 115 -2.4; 121 -2.5; 128 -2.6; 136 -2.7; 143 -2.8; 151 -2.8; 160 -2.8; 169 -2.7; 178 -2.6; 188 -2.5; 199 -2.3; 210 -2.2; 222 -2.0; 235 -1.9; 248 -1.8; 262 -1.7; 277 -1.6; 292 -1.5; 309 -1.4; 326 -1.3; 345 -1.3; 364 -1.2; 385 -1.2; 406 -1.1; 429 -1.1; 453 -1.1; 479 -1.0; 506 -1.0; 534 -1.0; 565 -1.0; 596 -1.0; 630 -0.9; 665 -0.9; 703 -0.9; 743 -0.9; 784 -0.9; 829 -0.9; 875 -0.9; 924 -0.9; 977 -0.9; 1032 -0.9; 1090 -0.9; 1151 -0.9; 1216 -0.9; 1284 -0.9; 1357 -0.9; 1433 -0.9; 1514 -0.9; 1599 -0.9; 1689 -0.9; 1784 -0.9; 1885 -0.9; 1991 -0.9; 2103 -0.9; 2221 -0.9; 2347 -0.9; 2479 -0.9; 2618 -0.9; 2766 -0.9; 2921 -0.9; 3086 -1.0; 3260 -1.0; 3443 -1.0; 3637 -1.1; 3842 -1.2; 4058 -1.4; 4287 -1.7; 4528 -2.2; 4783 -3.0; 5052 -4.4; 5337 -6.3; 5637 -7.9; 5955 -7.2; 6290 -5.7; 6644 -5.0; 7018 -5.1; 7414 -6.2; 7831 -8.4; 8272 -11.1; 8738 -11.3; 9230 -9.1; 9749 -7.4; 10298 -6.9; 10878 -7.1; 11490 -7.9; 12137 -8.7; 12821 -8.8; 13543 -7.8; 14305 -6.2; 15110 -4.7; 15961 -3.4; 16860 -2.4; 17809 -1.7; 18812 -1.1; 19871 -0.2

Beyerdynamic T1 V2:
Preamp: -4.3db
32 -0.8
64 4.2
125 0.5
250 -0.9
500 -0.7
1000 -0.9
2000 3.5
4000 2.4
8000 -6.5
16000 -0.9
Preamp: -4.6db
20 -1.2
25 -0.8
32 -0.5
40 0.4
50 1.7
63 3.3
80 3.0
100 1.5
125 0.6
160 -0.0
200 -0.4
250 -0.5
315 -0.6
400 -0.6
500 -0.6
630 -0.6
800 -0.4
1000 -0.2
1250 0.2
1600 1.1
2000 2.4
2500 3.5
3150 2.5
4000 1.0
5000 0.2
6300 -1.2
8000 -9.1
10000 -1.4
12500 -1.4
16000 -1.7
20000 0.9
GraphicEQ: 20 -4.8; 21 -4.7; 22 -4.6; 23 -4.6; 24 -4.5; 26 -4.4; 27 -4.3; 29 -4.2; 30 -4.1; 32 -3.9; 34 -3.7; 36 -3.5; 38 -3.3; 40 -3.1; 43 -2.7; 45 -2.5; 48 -2.1; 50 -1.8; 53 -1.4; 56 -1.1; 59 -0.7; 63 -0.4; 66 -0.3; 70 -0.2; 74 -0.3; 78 -0.4; 83 -0.7; 87 -1.0; 92 -1.4; 97 -1.8; 103 -2.1; 109 -2.5; 115 -2.8; 121 -3.0; 128 -3.3; 136 -3.5; 143 -3.7; 151 -3.9; 160 -4.0; 169 -4.2; 178 -4.3; 188 -4.4; 199 -4.5; 210 -4.5; 222 -4.6; 235 -4.7; 248 -4.7; 262 -4.7; 277 -4.8; 292 -4.8; 309 -4.8; 326 -4.9; 345 -4.9; 364 -4.9; 385 -4.9; 406 -4.9; 429 -4.9; 453 -4.9; 479 -4.9; 506 -4.9; 534 -4.9; 565 -4.8; 596 -4.8; 630 -4.8; 665 -4.8; 703 -4.7; 743 -4.7; 784 -4.6; 829 -4.5; 875 -4.5; 924 -4.4; 977 -4.3; 1032 -4.2; 1090 -4.0; 1151 -3.9; 1216 -3.7; 1284 -3.6; 1357 -3.3; 1433 -3.1; 1514 -2.8; 1599 -2.5; 1689 -2.2; 1784 -1.9; 1885 -1.5; 1991 -1.1; 2103 -0.8; 2221 -0.5; 2347 -0.3; 2479 -0.3; 2618 -0.3; 2766 -0.5; 2921 -0.8; 3086 -1.1; 3260 -1.5; 3443 -1.9; 3637 -2.3; 3842 -2.6; 4058 -3.0; 4287 -3.3; 4528 -3.7; 4783 -4.0; 5052 -4.3; 5337 -4.6; 5637 -5.0; 5955 -5.5; 6290 -6.1; 6644 -7.1; 7018 -8.6; 7414 -10.8; 7831 -12.5; 8272 -11.6; 8738 -9.4; 9230 -7.8; 9749 -6.9; 10298 -6.3; 10878 -5.9; 11490 -5.7; 12137 -5.6; 12821 -5.5; 13543 -5.4; 14305 -5.4; 15110 -5.3; 15961 -5.3; 16860 -5.3; 17809 -5.3; 18812 -4.7; 19871 -3.3

Bose QuietComfort 35 II:
Preamp: -2.5db
32 -0.4
64 -0.2
125 -0.2
250 -0.2
500 -0.3
1000 -0.3
2000 -0.4
4000 2.6
8000 -1.3
16000 -0.3
Preamp: -3.7db
20 -1.1
25 -0.8
32 -0.6
40 -0.4
50 -0.3
63 -0.2
80 -0.3
100 -0.3
125 -0.3
160 -0.3
200 -0.2
250 -0.2
315 -0.2
400 -0.3
500 -0.2
630 -0.2
800 -0.3
1000 -0.2
1250 -0.2
1600 -0.2
2000 -0.1
2500 0.0
3150 1.0
4000 3.3
5000 0.8
6300 -1.9
8000 -0.2
10000 -0.3
12500 -0.4
16000 -0.5
20000 -0.4
GraphicEQ: 20 -3.5; 21 -3.5; 22 -3.5; 23 -3.5; 24 -3.5; 26 -3.5; 27 -3.5; 29 -3.5; 30 -3.5; 32 -3.5; 34 -3.5; 36 -3.5; 38 -3.5; 40 -3.5; 43 -3.5; 45 -3.5; 48 -3.5; 50 -3.5; 53 -3.5; 56 -3.5; 59 -3.5; 63 -3.5; 66 -3.5; 70 -3.5; 74 -3.5; 78 -3.5; 83 -3.5; 87 -3.5; 92 -3.5; 97 -3.5; 103 -3.5; 109 -3.5; 115 -3.5; 121 -3.5; 128 -3.5; 136 -3.5; 143 -3.5; 151 -3.5; 160 -3.5; 169 -3.5; 178 -3.5; 188 -3.5; 199 -3.5; 210 -3.5; 222 -3.5; 235 -3.5; 248 -3.5; 262 -3.5; 277 -3.5; 292 -3.5; 309 -3.5; 326 -3.5; 345 -3.5; 364 -3.5; 385 -3.5; 406 -3.5; 429 -3.5; 453 -3.5; 479 -3.5; 506 -3.5; 534 -3.5; 565 -3.5; 596 -3.5; 630 -3.5; 665 -3.5; 703 -3.5; 743 -3.5; 784 -3.5; 829 -3.5; 875 -3.5; 924 -3.5; 977 -3.5; 1032 -3.5; 1090 -3.5; 1151 -3.4; 1216 -3.4; 1284 -3.4; 1357 -3.4; 1433 -3.4; 1514 -3.4; 1599 -3.3; 1689 -3.3; 1784 -3.3; 1885 -3.2; 1991 -3.2; 2103 -3.1; 2221 -3.1; 2347 -3.0; 2479 -2.9; 2618 -2.7; 2766 -2.5; 2921 -2.3; 3086 -1.9; 3260 -1.5; 3443 -1.1; 3637 -0.6; 3842 -0.3; 4058 -0.2; 4287 -0.5; 4528 -1.0; 4783 -1.6; 5052 -2.3; 5337 -3.0; 5637 -3.8; 5955 -4.5; 6290 -4.6; 6644 -4.3; 7018 -3.9; 7414 -3.7; 7831 -3.5; 8272 -3.5; 8738 -3.5; 9230 -3.5; 9749 -3.5; 10298 -3.5; 10878 -3.5; 11490 -3.5; 12137 -3.5; 12821 -3.5; 13543 -3.5; 14305 -3.5; 15110 -3.5; 15961 -3.5; 16860 -3.5; 17809 -3.5; 18812 -3.5; 19871 -3.4

Bowers & Wilkins P5:
Preamp: -5.8db
32 5.1
64 2.8
125 -1.3
250 -0.9
500 -1.1
1000 -1.0
2000 -1.7
4000 2.2
8000 4.4
16000 -1.9
Preamp: -7.6db
20 1.3
25 2.2
32 4.4
40 5.7
50 4.0
63 1.8
80 0.5
100 -0.1
125 -0.5
160 -0.8
200 -0.8
250 -0.9
315 -1.0
400 -1.0
500 -0.9
630 -1.0
800 -1.0
1000 -0.9
1250 -1.0
1600 -0.9
2000 -0.8
2500 -0.7
3150 -0.3
4000 2.3
5000 2.9
6300 3.1
8000 5.3
10000 0.9
12500 -0.7
16000 -1.5
20000 -4.0
GraphicEQ: 20 -5.1; 21 -4.8; 22 -4.5; 23 -4.2; 24 -3.9; 26 -3.2; 27 -2.8; 29 -2.1; 30 -1.8; 32 -1.1; 34 -0.5; 36 -0.2; 38 -0.2; 40 -0.2; 43 -0.2; 45 -0.2; 48 -0.7; 50 -1.1; 53 -1.7; 56 -2.3; 59 -2.8; 63 -3.4; 66 -3.8; 70 -4.2; 74 -4.6; 78 -4.9; 83 -5.3; 87 -5.5; 92 -5.7; 97 -5.9; 103 -6.1; 109 -6.3; 115 -6.5; 121 -6.6; 128 -6.7; 136 -6.8; 143 -6.9; 151 -7.0; 160 -7.0; 169 -7.1; 178 -7.2; 188 -7.2; 199 -7.3; 210 -7.3; 222 -7.3; 235 -7.4; 248 -7.4; 262 -7.4; 277 -7.4; 292 -7.5; 309 -7.5; 326 -7.5; 345 -7.5; 364 -7.5; 385 -7.5; 406 -7.5; 429 -7.5; 453 -7.6; 479 -7.6; 506 -7.6; 534 -7.6; 565 -7.6; 596 -7.6; 630 -7.6; 665 -7.6; 703 -7.6; 743 -7.6; 784 -7.6; 829 -7.5; 875 -7.6; 924 -7.6; 977 -7.5; 1032 -7.5; 1090 -7.5; 1151 -7.5; 1216 -7.5; 1284 -7.5; 1357 -7.5; 1433 -7.4; 1514 -7.4; 1599 -7.4; 1689 -7.4; 1784 -7.3; 1885 -7.3; 1991 -7.2; 2103 -7.2; 2221 -7.1; 2347 -7.0; 2479 -6.9; 2618 -6.8; 2766 -6.6; 2921 -6.4; 3086 -6.1; 3260 -5.8; 3443 -5.4; 3637 -4.9; 3842 -4.2; 4058 -3.5; 4287 -2.9; 4528 -2.6; 4783 -2.6; 5052 -2.8; 5337 -3.0; 5637 -3.1; 5955 -3.0; 6290 -2.6; 6644 -2.0; 7018 -1.4; 7414 -1.0; 7831 -1.1; 8272 -1.8; 8738 -2.8; 9230 -3.7; 9749 -4.5; 10298 -5.1; 10878 -5.6; 11490 -6.0; 12137 -6.3; 12821 -6.5; 13543 -6.7; 14305 -6.9; 15110 -7.0; 15961 -7.1; 16860 -7.2; 17809 -7.2; 18812 -7.7; 19871 -8.7

Dan Clark Audio AEON RT:
Preamp: -1.8dB
32 1.8
64 -1.1
125 1.2
250 -0.2
500 -0.4
1000 -0.6
2000 1.0
4000 1.1
8000 -2.4
16000 -3.3
Preamp: -2.7dB
20 1.3
25 0.8
32 1.5
40 0.3
50 0
63 -0.2
80 -0.3
100 -0.4
125 0.2
160 2.6
200 -0.5
250 -0.2
315 -0.3
400 -0.3
500 -0.3
630 -0.3
800 -0.3
1000 -0.2
1250 -0.2
1600 0
2000 0
2500 1.7
3150 2.2
4000 0
5000 -0.6
6300 -1.2
8000 -1.7
10000 -2.1
12500 -2.8
16000 -3.7
20000 -4.1
GraphicEQ: 20 -0.3; 21 -0.4; 22 -0.5; 23 -0.6; 24 -0.7; 26 -1.0; 27 -1.1; 29 -1.3; 30 -1.4; 32 -1.6; 34 -1.8; 36 -1.9; 38 -2.1; 40 -2.2; 43 -2.4; 45 -2.4; 48 -2.6; 50 -2.6; 53 -2.7; 56 -2.8; 59 -2.8; 63 -2.9; 66 -2.9; 70 -2.9; 74 -2.9; 78 -2.9; 83 -2.9; 87 -2.9; 92 -2.9; 97 -2.9; 103 -2.8; 109 -2.7; 115 -2.6; 121 -2.5; 128 -2.1; 136 -1.6; 143 -0.8; 151 -0.2; 160 -0.5; 169 -1.3; 178 -1.9; 188 -2.3; 199 -2.6; 210 -2.7; 222 -2.8; 235 -2.9; 248 -3.0; 262 -3.0; 277 -3.0; 292 -3.0; 309 -3.1; 326 -3.1; 345 -3.1; 364 -3.1; 385 -3.1; 406 -3.1; 429 -3.1; 453 -3.1; 479 -3.1; 506 -3.1; 534 -3.1; 565 -3.1; 596 -3.1; 630 -3.1; 665 -3.1; 703 -3.1; 743 -3.1; 784 -3.1; 829 -3.1; 875 -3.1; 924 -3.1; 977 -3.0; 1032 -3.0; 1090 -3.0; 1151 -3.0; 1216 -3.0; 1284 -2.9; 1357 -2.9; 1433 -2.9; 1514 -2.8; 1599 -2.8; 1689 -2.7; 1784 -2.6; 1885 -2.5; 1991 -2.3; 2103 -2.1; 2221 -1.8; 2347 -1.5; 2479 -1.1; 2618 -0.7; 2766 -0.4; 2921 -0.3; 3086 -0.5; 3260 -0.9; 3443 -1.4; 3637 -1.8; 3842 -2.2; 4058 -2.5; 4287 -2.8; 4528 -3.0; 4783 -3.2; 5052 -3.4; 5337 -3.6; 5637 -3.7; 5955 -3.9; 6290 -4.0; 6644 -4.1; 7018 -4.3; 7414 -4.4; 7831 -4.5; 8272 -4.6; 8738 -4.7; 9230 -4.7; 9749 -4.8; 10298 -4.8; 10878 -4.9; 11490 -4.9; 12137 -5.0; 12821 -5.0; 13543 -5.0; 14305 -5.0; 15110 -5.1; 15961 -5.1; 16860 -5.1; 17809 -5.1; 18812 -5.1; 19871 -5.0

Focal Clear:
Preamp: -5.7dB
32 5.2
64 1.0
125 0.2
250 0
500 0.5
1000 -1.5
2000 0.2
4000 0.4
8000 -0.5
16000 -0.4
Preamp: -8.8dB
20 3.7
25 5.1
32 3.6
40 2.7
50 1.9
63 1.4
80 0.9
100 0.6
125 0.4
160 0.3
200 0.2
250 0.2
315 0.2
400 0.2
500 0
630 0
800 0
1000 -1.4
1250 -1.2
1600 0
2000 0
2500 0.2
3150 0.2
4000 0.2
5000 0.2
6300 0.2
8000 0.2
10000 -1.2
12500 -1.5
16000 0
20000 0.6
GraphicEQ: 20 -0.2; 21 -0.2; 22 -0.3; 23 -0.3; 24 -0.4; 26 -0.5; 27 -0.6; 29 -0.7; 30 -0.8; 32 -1.0; 34 -1.1; 36 -1.3; 38 -1.5; 40 -1.6; 43 -1.9; 45 -2.0; 48 -2.2; 50 -2.4; 53 -2.6; 56 -2.8; 59 -2.9; 63 -3.1; 66 -3.3; 70 -3.4; 74 -3.6; 78 -3.7; 83 -3.9; 87 -4.0; 92 -4.1; 97 -4.2; 103 -4.3; 109 -4.4; 115 -4.5; 121 -4.6; 128 -4.6; 136 -4.7; 143 -4.7; 151 -4.7; 160 -4.8; 169 -4.8; 178 -4.8; 188 -4.8; 199 -4.9; 210 -4.9; 222 -4.9; 235 -4.9; 248 -4.9; 262 -4.9; 277 -4.9; 292 -4.9; 309 -4.9; 326 -5.0; 345 -5.0; 364 -5.0; 385 -5.0; 406 -5.0; 429 -5.0; 453 -5.0; 479 -5.1; 506 -5.1; 534 -5.1; 565 -5.1; 596 -5.2; 630 -5.2; 665 -5.3; 703 -5.4; 743 -5.5; 784 -5.6; 829 -5.8; 875 -6.0; 924 -6.3; 977 -6.6; 1032 -6.8; 1090 -6.9; 1151 -6.9; 1216 -6.6; 1284 -6.4; 1357 -6.1; 1433 -5.9; 1514 -5.7; 1599 -5.5; 1689 -5.4; 1784 -5.3; 1885 -5.3; 1991 -5.2; 2103 -5.2; 2221 -5.1; 2347 -5.1; 2479 -5.1; 2618 -5.1; 2766 -5.0; 2921 -5.0; 3086 -5.0; 3260 -5.0; 3443 -5.0; 3637 -5.0; 3842 -5.0; 4058 -5.0; 4287 -5.0; 4528 -5.0; 4783 -5.0; 5052 -5.0; 5337 -5.0; 5637 -5.0; 5955 -5.0; 6290 -5.1; 6644 -5.1; 7018 -5.1; 7414 -5.2; 7831 -5.2; 8272 -5.3; 8738 -5.5; 9230 -5.7; 9749 -6.0; 10298 -6.4; 10878 -6.8; 11490 -6.9; 12137 -6.6; 12821 -6.1; 13543 -5.7; 14305 -5.5; 15110 -5.3; 15961 -5.2; 16860 -5.1; 17809 -5.1; 18812 -5.0; 19871 -4.9

HEDD HEDDPhone:
Preamp: -7.0dB
32 6.8
64 0.4
125 0.4
250 -0.7
500 -1.0
1000 -1.4
2000 2.3
4000 0
8000 0.5
16000 0.6
Preamp: -9.8dB
20 3.8
25 5.1
32 4.5
40 3.0
50 1.8
63 1.1
80 0.6
100 0.4
125 0.3
160 0.3
200 0.2
250 -1.6
315 -0.5
400 0.2
500 0.5
630 -2.9
800 -2.9
1000 0.6
1250 0.2
1600 1.1
2000 2.1
2500 0.4
3150 0.4
4000 0.3
5000 0.3
6300 0.4
8000 0.4
10000 0.4
12500 0.5
16000 0.7
20000 0.7
GraphicEQ: 20 -0.2; 21 -0.2; 22 -0.2; 23 -0.2; 24 -0.2; 26 -0.2; 27 -0.2; 29 -0.3; 30 -0.4; 32 -0.7; 34 -1.0; 36 -1.3; 38 -1.6; 40 -1.9; 43 -2.4; 45 -2.6; 48 -3.0; 50 -3.2; 53 -3.5; 56 -3.8; 59 -4.1; 63 -4.3; 66 -4.5; 70 -4.7; 74 -4.9; 78 -5.0; 83 -5.2; 87 -5.2; 92 -5.3; 97 -5.4; 103 -5.5; 109 -5.6; 115 -5.6; 121 -5.7; 128 -5.7; 136 -5.8; 143 -5.8; 151 -5.8; 160 -5.9; 169 -6.0; 178 -6.0; 188 -6.1; 199 -6.3; 210 -6.5; 222 -6.8; 235 -7.2; 248 -7.6; 262 -7.8; 277 -7.7; 292 -7.3; 309 -6.9; 326 -6.7; 345 -6.5; 364 -6.4; 385 -6.3; 406 -6.3; 429 -6.3; 453 -6.4; 479 -6.5; 506 -6.6; 534 -6.9; 565 -7.3; 596 -7.8; 630 -8.8; 665 -9.9; 703 -10.7; 743 -10.3; 784 -9.1; 829 -8.0; 875 -7.3; 924 -6.9; 977 -6.5; 1032 -6.3; 1090 -6.1; 1151 -6.0; 1216 -5.9; 1284 -5.8; 1357 -5.6; 1433 -5.5; 1514 -5.2; 1599 -4.9; 1689 -4.5; 1784 -4.1; 1885 -3.9; 1991 -4.0; 2103 -4.4; 2221 -4.8; 2347 -5.1; 2479 -5.3; 2618 -5.4; 2766 -5.5; 2921 -5.6; 3086 -5.6; 3260 -5.7; 3443 -5.7; 3637 -5.7; 3842 -5.7; 4058 -5.7; 4287 -5.7; 4528 -5.8; 4783 -5.8; 5052 -5.8; 5337 -5.8; 5637 -5.8; 5955 -5.8; 6290 -5.8; 6644 -5.8; 7018 -5.8; 7414 -5.8; 7831 -5.8; 8272 -5.8; 8738 -5.8; 9230 -5.8; 9749 -5.8; 10298 -5.8; 10878 -5.8; 11490 -5.8; 12137 -5.8; 12821 -5.8; 13543 -5.8; 14305 -5.8; 15110 -5.8; 15961 -5.8; 16860 -5.8; 17809 -5.8; 18812 -5.8; 19871 -5.8

Hifiman HE400i 2016:
Preamp: -4.3db
32 4.1
64 0
125 -0.5
250 -0.6
500 -0.5
1000 -0.8
2000 3.1
4000 0.7
8000 -2.6
16000 -0.9
Preamp: -4.8dB
20 2.6
25 3.9
32 2.4
40 2.2
50 1.1
63 0.5
80 0.2
100 0
125 -0.4
160 -0.5
200 -0.5
250 -0.5
315 -0.5
400 -0.4
500 -0.4
630 -0.5
800 -0.4
1000 -0.3
1250 -0.3
1600 1.8
2000 4.2
2500 0.2
3150 -0.2
4000 -0.3
5000 2.4
6300 0.7
8000 -4.5
10000 -1.6
12500 -0.9
16000 -1.1
20000 0.9
GraphicEQ: 20 -0.5; 21 -0.6; 22 -0.6; 23 -0.7; 24 -0.7; 26 -0.9; 27 -1.0; 29 -1.1; 30 -1.2; 32 -1.4; 34 -1.6; 36 -1.8; 38 -1.9; 40 -2.1; 43 -2.4; 45 -2.5; 48 -2.8; 50 -2.9; 53 -3.1; 56 -3.3; 59 -3.5; 63 -3.7; 66 -3.8; 70 -3.9; 74 -4.1; 78 -4.2; 83 -4.3; 87 -4.4; 92 -4.5; 97 -4.6; 103 -4.7; 109 -4.8; 115 -4.8; 121 -4.9; 128 -4.9; 136 -5.0; 143 -5.0; 151 -5.0; 160 -5.1; 169 -5.1; 178 -5.1; 188 -5.1; 199 -5.1; 210 -5.1; 222 -5.2; 235 -5.2; 248 -5.2; 262 -5.2; 277 -5.2; 292 -5.2; 309 -5.2; 326 -5.2; 345 -5.2; 364 -5.2; 385 -5.2; 406 -5.2; 429 -5.2; 453 -5.2; 479 -5.1; 506 -5.1; 534 -5.1; 565 -5.1; 596 -5.1; 630 -5.1; 665 -5.1; 703 -5.1; 743 -5.0; 784 -5.0; 829 -5.0; 875 -4.9; 924 -4.9; 977 -4.8; 1032 -4.8; 1090 -4.7; 1151 -4.5; 1216 -4.4; 1284 -4.2; 1357 -3.9; 1433 -3.5; 1514 -3.0; 1599 -2.3; 1689 -1.5; 1784 -0.7; 1885 -0.2; 1991 -0.5; 2103 -1.2; 2221 -2.1; 2347 -2.8; 2479 -3.3; 2618 -3.7; 2766 -4.0; 2921 -4.2; 3086 -4.3; 3260 -4.4; 3443 -4.4; 3637 -4.4; 3842 -4.4; 4058 -4.2; 4287 -4.0; 4528 -3.6; 4783 -3.1; 5052 -2.5; 5337 -2.4; 5637 -2.8; 5955 -3.6; 6290 -4.4; 6644 -5.0; 7018 -5.8; 7414 -6.7; 7831 -8.0; 8272 -8.8; 8738 -8.3; 9230 -7.2; 9749 -6.4; 10298 -6.0; 10878 -5.7; 11490 -5.5; 12137 -5.4; 12821 -5.4; 13543 -5.3; 14305 -5.3; 15110 -5.3; 15961 -5.3; 16860 -5.3; 17809 -5.3; 18812 -4.8; 19871 -3.7

Massdrop X KOSS ESP95X Electrostatic:
Preamp: -3.0dB
32 2.7
64 1.5
125 0
250 0
500 0.5
1000 -2.3
2000 -0.3
4000 2.4
8000 -0.4
16000 0
Preamp: -4.0dB
20 -1.3
25 0.9
32 2.5
40 2.2
50 1.9
63 1.3
80 0.8
100 0.3
125 0
160 0
200 0
250 0
315 0
400 0
500 0
630 0
800 0.2
1000 -2.3
1250 -2.0
1600 0
2000 0
2500 0
3150 0
4000 3.8
5000 0.3
6300 -0.3
8000 0.2
10000 0
12500 0
16000 0
20000 0
GraphicEQ: 20 -3.8; 21 -3.3; 22 -2.9; 23 -2.6; 24 -2.3; 26 -1.8; 27 -1.6; 29 -1.3; 30 -1.2; 32 -1.1; 34 -1.0; 36 -0.9; 38 -0.9; 40 -0.9; 43 -1.0; 45 -1.1; 48 -1.2; 50 -1.3; 53 -1.5; 56 -1.7; 59 -1.8; 63 -2.0; 66 -2.2; 70 -2.4; 74 -2.5; 78 -2.7; 83 -2.8; 87 -3.0; 92 -3.1; 97 -3.2; 103 -3.3; 109 -3.4; 115 -3.4; 121 -3.5; 128 -3.5; 136 -3.6; 143 -3.6; 151 -3.6; 160 -3.7; 169 -3.7; 178 -3.7; 188 -3.7; 199 -3.7; 210 -3.7; 222 -3.8; 235 -3.8; 248 -3.8; 262 -3.8; 277 -3.8; 292 -3.8; 309 -3.8; 326 -3.8; 345 -3.8; 364 -3.8; 385 -3.8; 406 -3.8; 429 -3.9; 453 -3.9; 479 -3.9; 506 -3.9; 534 -4.0; 565 -4.0; 596 -4.0; 630 -4.1; 665 -4.1; 703 -4.2; 743 -4.4; 784 -4.5; 829 -4.7; 875 -5.0; 924 -5.4; 977 -5.9; 1032 -6.4; 1090 -6.7; 1151 -6.6; 1216 -6.2; 1284 -5.7; 1357 -5.2; 1433 -4.8; 1514 -4.6; 1599 -4.4; 1689 -4.2; 1784 -4.1; 1885 -4.0; 1991 -3.9; 2103 -3.9; 2221 -3.8; 2347 -3.7; 2479 -3.6; 2618 -3.6; 2766 -3.5; 2921 -3.3; 3086 -3.1; 3260 -2.9; 3443 -2.5; 3637 -2.0; 3842 -1.3; 4058 -0.5; 4287 -0.2; 4528 -0.8; 4783 -2.0; 5052 -3.4; 5337 -4.3; 5637 -4.2; 5955 -3.8; 6290 -3.7; 6644 -3.6; 7018 -3.6; 7414 -3.6; 7831 -3.7; 8272 -3.7; 8738 -3.7; 9230 -3.7; 9749 -3.7; 10298 -3.7; 10878 -3.7; 11490 -3.7; 12137 -3.8; 12821 -3.7; 13543 -3.8; 14305 -3.8; 15110 -3.8; 15961 -3.8; 16860 -3.8; 17809 -3.8; 18812 -3.8; 19871 -3.9

NAD Viso HP50:
Preamp: -7.4dB
32 7
64 1.4
125 -0.9
250 -1.3
500 -0.9
1000 -2.2
2000 4.4
4000 2.1
8000 -3.1
16000 -4.1
Preamp: -8.3dB
20 4.9
25 5.2
32 4.6
40 3.8
50 2.6
63 1.9
80 0.8
100 0
125 -0.6
160 -0.9
200 -0.9
250 -1.0
315 -1.0
400 -1.0
500 -1.0
630 -1.0
800 -0.9
1000 -0.8
1250 -0.6
1600 0
2000 2.4
2500 5.4
3150 4.5
4000 0.2
5000 -0.5
6300 -0.9
8000 -1.1
10000 -2.6
12500 -7.6
16000 -3.0
20000 -3.0
GraphicEQ: 20 -0.2; 21 -0.2; 22 -0.2; 23 -0.2; 24 -0.2; 26 -0.2; 27 -0.2; 29 -0.2; 30 -0.2; 32 -0.2; 34 -0.3; 36 -0.6; 38 -0.9; 40 -1.2; 43 -1.6; 45 -1.8; 48 -2.2; 50 -2.4; 53 -2.7; 56 -3.0; 59 -3.3; 63 -3.6; 66 -3.9; 70 -4.2; 74 -4.5; 78 -4.8; 83 -5.1; 87 -5.3; 92 -5.6; 97 -5.8; 103 -6.1; 109 -6.3; 115 -6.5; 121 -6.6; 128 -6.8; 136 -6.9; 143 -7.0; 151 -7.1; 160 -7.2; 169 -7.3; 178 -7.3; 188 -7.4; 199 -7.4; 210 -7.5; 222 -7.5; 235 -7.5; 248 -7.5; 262 -7.6; 277 -7.6; 292 -7.6; 309 -7.6; 326 -7.6; 345 -7.6; 364 -7.6; 385 -7.6; 406 -7.6; 429 -7.6; 453 -7.6; 479 -7.6; 506 -7.6; 534 -7.6; 565 -7.5; 596 -7.5; 630 -7.5; 665 -7.5; 703 -7.5; 743 -7.4; 784 -7.4; 829 -7.4; 875 -7.3; 924 -7.3; 977 -7.2; 1032 -7.1; 1090 -7.0; 1151 -6.9; 1216 -6.8; 1284 -6.6; 1357 -6.4; 1433 -6.2; 1514 -5.9; 1599 -5.5; 1689 -5.0; 1784 -4.4; 1885 -3.6; 1991 -2.9; 2103 -2.2; 2221 -1.7; 2347 -1.1; 2479 -0.5; 2618 -0.2; 2766 -0.2; 2921 -0.2; 3086 -0.9; 3260 -2.1; 3443 -3.1; 3637 -4.0; 3842 -4.7; 4058 -5.3; 4287 -5.7; 4528 -6.1; 4783 -6.4; 5052 -6.6; 5337 -6.8; 5637 -7.0; 5955 -7.1; 6290 -7.2; 6644 -7.3; 7018 -7.4; 7414 -7.6; 7831 -7.7; 8272 -7.8; 8738 -8.0; 9230 -8.2; 9749 -8.6; 10298 -9.2; 10878 -10.2; 11490 -11.7; 12137 -12.5; 12821 -11.5; 13543 -10.1; 14305 -9.1; 15110 -8.6; 15961 -8.3; 16860 -8.1; 17809 -8.0; 18812 -8.0; 19871 -7.9

Philips Fidelio X2HR:
Preamp: -4.0dB
32 3.6
64 0.5
125 0.9
250 -0.4
500 0.8
1000 0.4
2000 0
4000 -0.4
8000 -1.7
16000 -1.9
Preamp: -5.3dB
20 2.6
25 2.7
32 2.5
40 1.9
50 1.3
63 0.9
80 0.7
100 0.6
125 0.7
160 0.6
200 0.7
250 -0.6
315 -0.3
400 0.7
500 0.5
630 0.6
800 0.6
1000 0.5
1250 0.4
1600 -1.4
2000 0
2500 0.6
3150 0.5
4000 1.3
5000 -4.8
6300 0.2
8000 -2.0
10000 -0.4
12500 -1.1
16000 -2.4
20000 -4.0
GraphicEQ: 20 -0.2; 21 -0.2; 22 -0.3; 23 -0.3; 24 -0.4; 26 -0.5; 27 -0.6; 29 -0.7; 30 -0.8; 32 -0.9; 34 -1.0; 36 -1.2; 38 -1.3; 40 -1.5; 43 -1.7; 45 -1.8; 48 -1.9; 50 -2.0; 53 -2.2; 56 -2.3; 59 -2.4; 63 -2.5; 66 -2.5; 70 -2.6; 74 -2.6; 78 -2.7; 83 -2.7; 87 -2.8; 92 -2.8; 97 -2.8; 103 -2.9; 109 -2.9; 115 -2.9; 121 -2.9; 128 -2.9; 136 -2.9; 143 -3.0; 151 -3.0; 160 -3.0; 169 -3.0; 178 -3.0; 188 -3.1; 199 -3.1; 210 -3.2; 222 -3.4; 235 -3.6; 248 -3.9; 262 -4.4; 277 -4.6; 292 -4.4; 309 -3.9; 326 -3.6; 345 -3.4; 364 -3.3; 385 -3.2; 406 -3.1; 429 -3.1; 453 -3.1; 479 -3.1; 506 -3.0; 534 -3.0; 565 -3.0; 596 -3.0; 630 -3.0; 665 -3.0; 703 -3.0; 743 -3.0; 784 -3.1; 829 -3.1; 875 -3.1; 924 -3.1; 977 -3.1; 1032 -3.2; 1090 -3.2; 1151 -3.3; 1216 -3.4; 1284 -3.6; 1357 -3.8; 1433 -4.1; 1514 -4.6; 1599 -4.9; 1689 -4.9; 1784 -4.6; 1885 -4.2; 1991 -3.9; 2103 -3.6; 2221 -3.5; 2347 -3.4; 2479 -3.3; 2618 -3.3; 2766 -3.3; 2921 -3.2; 3086 -3.3; 3260 -3.3; 3443 -3.3; 3637 -3.4; 3842 -3.5; 4058 -3.7; 4287 -4.1; 4528 -4.8; 4783 -6.3; 5052 -8.6; 5337 -8.5; 5637 -6.3; 5955 -5.0; 6290 -4.4; 6644 -4.3; 7018 -4.4; 7414 -4.9; 7831 -5.7; 8272 -6.1; 8738 -5.5; 9230 -4.8; 9749 -4.5; 10298 -4.4; 10878 -4.5; 11490 -4.6; 12137 -4.7; 12821 -4.8; 13543 -4.9; 14305 -5.1; 15110 -5.2; 15961 -5.3; 16860 -5.4; 17809 -5.5; 18812 -5.7; 19871 -6.2

RAAL-requisite SR1a Ribbon:
Preamp: -7.6dB
32 6.7
64 2.7
125 0.4
250 0.3
500 0.3
1000 0.7
2000 -1.8
4000 0.5
8000 -1.6
16000 0.9
Preamp: -6.7dB
20 3.2
25 5.1
32 4.5
40 4.0
50 3.5
63 2.8
80 2.0
100 1.1
125 0.7
160 0.5
200 0.5
250 0.4
315 0.3
400 0.3
500 0.4
630 0.4
800 0.3
1000 0.3
1250 0.3
1600 -0.2
2000 -2.7
2500 -0.2
3150 0.3
4000 0.5
5000 -0.7
6300 -1.5
8000 -1.8
10000 0.4
12500 0.5
16000 0.7
20000 1.2
GraphicEQ: 20 -2.0; 21 -1.6; 22 -1.2; 23 -0.9; 24 -0.7; 26 -0.3; 27 -0.2; 29 -0.2; 30 -0.2; 32 -0.2; 34 -0.2; 36 -0.2; 38 -0.3; 40 -0.4; 43 -0.7; 45 -0.8; 48 -1.1; 50 -1.3; 53 -1.5; 56 -1.8; 59 -2.0; 63 -2.3; 66 -2.5; 70 -2.8; 74 -3.1; 78 -3.3; 83 -3.6; 87 -3.8; 92 -4.0; 97 -4.2; 103 -4.4; 109 -4.6; 115 -4.7; 121 -4.9; 128 -5.0; 136 -5.1; 143 -5.2; 151 -5.3; 160 -5.3; 169 -5.4; 178 -5.4; 188 -5.5; 199 -5.5; 210 -5.5; 222 -5.6; 235 -5.6; 248 -5.6; 262 -5.6; 277 -5.6; 292 -5.7; 309 -5.7; 326 -5.7; 345 -5.7; 364 -5.7; 385 -5.7; 406 -5.7; 429 -5.7; 453 -5.7; 479 -5.7; 506 -5.7; 534 -5.7; 565 -5.7; 596 -5.7; 630 -5.7; 665 -5.7; 703 -5.8; 743 -5.8; 784 -5.8; 829 -5.8; 875 -5.8; 924 -5.8; 977 -5.8; 1032 -5.9; 1090 -5.9; 1151 -5.9; 1216 -6.0; 1284 -6.1; 1357 -6.2; 1433 -6.3; 1514 -6.5; 1599 -6.8; 1689 -7.2; 1784 -7.8; 1885 -8.4; 1991 -8.7; 2103 -8.5; 2221 -7.9; 2347 -7.3; 2479 -6.9; 2618 -6.6; 2766 -6.4; 2921 -6.3; 3086 -6.2; 3260 -6.1; 3443 -6.1; 3637 -6.1; 3842 -6.1; 4058 -6.1; 4287 -6.2; 4528 -6.3; 4783 -6.5; 5052 -7.0; 5337 -7.7; 5637 -8.1; 5955 -7.7; 6290 -7.4; 6644 -7.5; 7018 -7.9; 7414 -8.4; 7831 -8.1; 8272 -7.4; 8738 -6.8; 9230 -6.4; 9749 -6.2; 10298 -6.1; 10878 -6.0; 11490 -5.9; 12137 -5.9; 12821 -5.8; 13543 -5.8; 14305 -5.8; 15110 -5.8; 15961 -5.8; 16860 -5.8; 17809 -5.8; 18812 -5.7; 19871 -5.4

Sennheiser HD650:
Preamp: -7.2dB
32 7.0
64 1.1
125 -0.3
250 -0.3
500 -0.3
1000 -0.3
2000 -0.3
4000 -0.5
8000 2.4
16000 -3.3
Preamp: -7.0dB
20 5.9
25 5.1
32 4.7
40 3.4
50 2.5
63 1.7
80 0.8
100 0.2
125 0
160 -0.2
200 -0.2
250 -0.2
315 -0.3
400 -0.3
500 -0.3
630 -0.3
800 -0.3
1000 -0.3
1250 -0.3
1600 -0.3
2000 -0.3
2500 -0.3
3150 -0.3
4000 -0.2
5000 -0.3
6300 1.3
8000 3.7
10000 0
12500 -3.4
16000 -2.5
20000 -3.8
GraphicEQ: 20 -0.2; 21 -0.2; 22 -0.2; 23 -0.2; 24 -0.2; 26 -0.2; 27 -0.2; 29 -0.2; 30 -0.2; 32 -0.3; 34 -0.6; 36 -0.9; 38 -1.1; 40 -1.4; 43 -1.8; 45 -2.0; 48 -2.4; 50 -2.6; 53 -2.9; 56 -3.2; 59 -3.5; 63 -3.8; 66 -4.0; 70 -4.3; 74 -4.5; 78 -4.8; 83 -5.0; 87 -5.2; 92 -5.4; 97 -5.5; 103 -5.7; 109 -5.8; 115 -5.9; 121 -6.0; 128 -6.1; 136 -6.2; 143 -6.2; 151 -6.3; 160 -6.3; 169 -6.4; 178 -6.4; 188 -6.4; 199 -6.5; 210 -6.5; 222 -6.5; 235 -6.5; 248 -6.5; 262 -6.5; 277 -6.5; 292 -6.6; 309 -6.6; 326 -6.6; 345 -6.6; 364 -6.6; 385 -6.6; 406 -6.6; 429 -6.6; 453 -6.6; 479 -6.6; 506 -6.6; 534 -6.6; 565 -6.6; 596 -6.6; 630 -6.6; 665 -6.6; 703 -6.6; 743 -6.6; 784 -6.6; 829 -6.6; 875 -6.6; 924 -6.6; 977 -6.6; 1032 -6.6; 1090 -6.6; 1151 -6.6; 1216 -6.6; 1284 -6.6; 1357 -6.6; 1433 -6.6; 1514 -6.6; 1599 -6.6; 1689 -6.6; 1784 -6.6; 1885 -6.6; 1991 -6.6; 2103 -6.6; 2221 -6.6; 2347 -6.6; 2479 -6.6; 2618 -6.5; 2766 -6.5; 2921 -6.5; 3086 -6.5; 3260 -6.5; 3443 -6.5; 3637 -6.5; 3842 -6.4; 4058 -6.4; 4287 -6.4; 4528 -6.3; 4783 -6.2; 5052 -6.1; 5337 -6.0; 5637 -5.8; 5955 -5.4; 6290 -5.0; 6644 -4.3; 7018 -3.5; 7414 -2.8; 7831 -2.9; 8272 -3.7; 8738 -4.6; 9230 -5.3; 9749 -5.8; 10298 -6.2; 10878 -6.7; 11490 -7.1; 12137 -7.8; 12821 -8.9; 13543 -9.8; 14305 -9.4; 15110 -8.3; 15961 -7.6; 16860 -7.2; 17809 -7.0; 18812 -7.4; 19871 -8.7

Sennheiser HD800S:
Preamp: -7.8dB
32 7.3
64 1.8
125 -0.5
250 -0.4
500 -0.3
1000 -0.6
2000 2.3
4000 0.2
8000 -2.0
16000 -3.0
Preamp: -6.5dB
20 5.1
25 5.1
32 4.4
40 4.7
50 3.3
63 2.0
80 1.0
100 0.3
125 0
160 0
200 -0.4
250 -0.3
315 -0.3
400 -0.3
500 -0.2
630 -0.2
800 0
1000 0
1250 0
1600 0.5
2000 1.2
2500 2.1
3150 1.8
4000 0.9
5000 -2.4
6300 -1.7
8000 -0.8
10000 -1.3
12500 -2.4
16000 -3.4
20000 -5.0
GraphicEQ: 20 -0.2; 21 -0.2; 22 -0.2; 23 -0.2; 24 -0.2; 26 -0.2; 27 -0.2; 29 -0.2; 30 -0.2; 32 -0.2; 34 -0.2; 36 -0.2; 38 -0.2; 40 -0.2; 43 -0.5; 45 -0.9; 48 -1.4; 50 -1.7; 53 -2.1; 56 -2.5; 59 -2.9; 63 -3.3; 66 -3.6; 70 -3.9; 74 -4.3; 78 -4.5; 83 -4.8; 87 -5.0; 92 -5.2; 97 -5.4; 103 -5.6; 109 -5.8; 115 -5.9; 121 -6.0; 128 -6.1; 136 -6.2; 143 -6.3; 151 -6.3; 160 -6.4; 169 -6.4; 178 -6.5; 188 -6.5; 199 -6.5; 210 -6.5; 222 -6.5; 235 -6.6; 248 -6.6; 262 -6.6; 277 -6.6; 292 -6.6; 309 -6.6; 326 -6.6; 345 -6.6; 364 -6.6; 385 -6.6; 406 -6.6; 429 -6.6; 453 -6.6; 479 -6.6; 506 -6.6; 534 -6.6; 565 -6.5; 596 -6.5; 630 -6.5; 665 -6.5; 703 -6.5; 743 -6.4; 784 -6.4; 829 -6.4; 875 -6.3; 924 -6.3; 977 -6.2; 1032 -6.2; 1090 -6.1; 1151 -6.1; 1216 -6.0; 1284 -5.9; 1357 -5.8; 1433 -5.7; 1514 -5.5; 1599 -5.4; 1689 -5.2; 1784 -5.0; 1885 -4.8; 1991 -4.6; 2103 -4.4; 2221 -4.2; 2347 -4.0; 2479 -3.9; 2618 -3.8; 2766 -3.9; 2921 -4.0; 3086 -4.1; 3260 -4.4; 3443 -4.7; 3637 -5.0; 3842 -5.3; 4058 -5.8; 4287 -6.2; 4528 -6.8; 4783 -7.6; 5052 -8.4; 5337 -8.9; 5637 -8.9; 5955 -8.4; 6290 -7.9; 6644 -7.6; 7018 -7.4; 7414 -7.3; 7831 -7.3; 8272 -7.4; 8738 -7.4; 9230 -7.5; 9749 -7.6; 10298 -7.7; 10878 -7.8; 11490 -7.9; 12137 -8.0; 12821 -8.1; 13543 -8.2; 14305 -8.3; 15110 -8.3; 15961 -8.4; 16860 -8.4; 17809 -8.5; 18812 -8.6; 19871 -9.0

Sony MDR-7506:
Preamp: -1.0dB
32 -0.6
64 0.7
125 0.4
250 0.5
500 0.5
1000 0.5
2000 0.6
4000 -3.3
8000 0.9
16000 0.8
Preamp: -1.2dB
20 -1.5
25 -0.9
32 0.2
40 0.3
50 0.5
63 0.4
80 0.4
100 0.5
125 0.5
160 0.4
200 0.4
250 0.4
315 0.4
400 0.4
500 0.4
630 0.4
800 0.4
1000 0.4
1250 0.4
1600 0.4
2000 0.4
2500 -0.5
3150 -1.6
4000 -2.8
5000 -2.1
6300 0.3
8000 0.4
10000 0.5
12500 0.7
16000 0.9
20000 0.7
GraphicEQ: 20 -3.2; 21 -2.8; 22 -2.5; 23 -2.2; 24 -1.9; 26 -1.5; 27 -1.3; 29 -1.1; 30 -1.0; 32 -0.8; 34 -0.7; 36 -0.6; 38 -0.5; 40 -0.5; 43 -0.4; 45 -0.4; 48 -0.3; 50 -0.3; 53 -0.3; 56 -0.3; 59 -0.3; 63 -0.2; 66 -0.2; 70 -0.2; 74 -0.2; 78 -0.2; 83 -0.2; 87 -0.2; 92 -0.2; 97 -0.2; 103 -0.2; 109 -0.2; 115 -0.2; 121 -0.2; 128 -0.2; 136 -0.2; 143 -0.2; 151 -0.2; 160 -0.2; 169 -0.2; 178 -0.2; 188 -0.2; 199 -0.2; 210 -0.2; 222 -0.2; 235 -0.2; 248 -0.2; 262 -0.2; 277 -0.2; 292 -0.2; 309 -0.2; 326 -0.2; 345 -0.2; 364 -0.2; 385 -0.2; 406 -0.2; 429 -0.2; 453 -0.2; 479 -0.2; 506 -0.2; 534 -0.2; 565 -0.2; 596 -0.2; 630 -0.2; 665 -0.2; 703 -0.2; 743 -0.2; 784 -0.2; 829 -0.2; 875 -0.2; 924 -0.2; 977 -0.3; 1032 -0.3; 1090 -0.3; 1151 -0.3; 1216 -0.3; 1284 -0.3; 1357 -0.3; 1433 -0.3; 1514 -0.4; 1599 -0.4; 1689 -0.4; 1784 -0.5; 1885 -0.5; 1991 -0.6; 2103 -0.7; 2221 -0.9; 2347 -1.1; 2479 -1.4; 2618 -1.7; 2766 -2.2; 2921 -2.7; 3086 -2.8; 3260 -2.7; 3443 -2.6; 3637 -2.8; 3842 -3.2; 4058 -3.9; 4287 -4.4; 4528 -4.3; 4783 -3.6; 5052 -2.7; 5337 -2.0; 5637 -1.5; 5955 -1.2; 6290 -1.0; 6644 -0.8; 7018 -0.7; 7414 -0.6; 7831 -0.5; 8272 -0.5; 8738 -0.4; 9230 -0.4; 9749 -0.4; 10298 -0.3; 10878 -0.3; 11490 -0.3; 12137 -0.3; 12821 -0.3; 13543 -0.3; 14305 -0.3; 15110 -0.2; 15961 -0.2; 16860 -0.2; 17809 -0.2; 18812 -0.3; 19871 -0.5

Sony MDR-ZX110:
Preamp: -4.5dB
32 4.7
64 -1.6
125 -1.8
250 -1.6
500 -2.3
1000 1.6
2000 0.5
4000 2.3
8000 1.4
16000 -3.1
Preamp: -5.7dB
20 3.7
25 5.0
32 2.5
40 1.5
50 0
63 -0.8
80 -1.2
100 -1.3
125 -1.6
160 -1.6
200 -1.5
250 -1.5
315 -1.5
400 -1.5
500 -1.4
630 -1.4
800 -0.6
1000 3.7
1250 -0.5
1600 -1.0
2000 0.5
2500 3.5
3150 0.7
4000 -0.3
5000 2.9
6300 5.1
8000 0
10000 -1.3
12500 -2.2
16000 -3.1
20000 -3.4
GraphicEQ: 20 -0.2; 21 -0.3; 22 -0.5; 23 -0.6; 24 -0.7; 26 -1.0; 27 -1.2; 29 -1.5; 30 -1.7; 32 -2.1; 34 -2.4; 36 -2.8; 38 -3.2; 40 -3.5; 43 -4.0; 45 -4.3; 48 -4.7; 50 -4.9; 53 -5.3; 56 -5.6; 59 -5.8; 63 -6.1; 66 -6.3; 70 -6.4; 74 -6.6; 78 -6.7; 83 -6.9; 87 -6.9; 92 -7.0; 97 -7.1; 103 -7.2; 109 -7.2; 115 -7.3; 121 -7.3; 128 -7.3; 136 -7.3; 143 -7.4; 151 -7.4; 160 -7.4; 169 -7.4; 178 -7.4; 188 -7.4; 199 -7.4; 210 -7.4; 222 -7.4; 235 -7.4; 248 -7.4; 262 -7.4; 277 -7.4; 292 -7.4; 309 -7.4; 326 -7.4; 345 -7.4; 364 -7.4; 385 -7.3; 406 -7.3; 429 -7.3; 453 -7.3; 479 -7.2; 506 -7.2; 534 -7.1; 565 -7.0; 596 -7.0; 630 -6.8; 665 -6.7; 703 -6.5; 743 -6.1; 784 -5.7; 829 -5.1; 875 -4.2; 924 -3.2; 977 -2.3; 1032 -2.3; 1090 -3.2; 1151 -4.1; 1216 -4.9; 1284 -5.3; 1357 -5.6; 1433 -5.7; 1514 -5.7; 1599 -5.7; 1689 -5.5; 1784 -5.2; 1885 -4.8; 1991 -4.3; 2103 -3.7; 2221 -2.9; 2347 -2.3; 2479 -1.9; 2618 -2.0; 2766 -2.5; 2921 -3.1; 3086 -3.7; 3260 -4.1; 3443 -4.4; 3637 -4.5; 3842 -4.5; 4058 -4.4; 4287 -4.1; 4528 -3.6; 4783 -2.9; 5052 -2.1; 5337 -1.2; 5637 -0.4; 5955 -0.2; 6290 -0.7; 6644 -1.7; 7018 -2.7; 7414 -3.6; 7831 -4.4; 8272 -5.0; 8738 -5.5; 9230 -5.8; 9749 -6.1; 10298 -6.4; 10878 -6.6; 11490 -6.7; 12137 -6.8; 12821 -6.9; 13543 -7.0; 14305 -7.1; 15110 -7.2; 15961 -7.2; 16860 -7.2; 17809 -7.3; 18812 -7.3; 19871 -7.2

Sony WH-1000XM4:
Preamp: -4.4dB
32 4.7
64 -1.7
125 -1.7
250 -1.6
500 -2.2
1000 1.6
2000 0.5
4000 2.3
8000 1.4
16000 -3.2
Preamp: -5.7dB
20 3.7
25 4.8
32 2.5
40 1.6
50 0.2
63 -0.5
80 -1.2
100 -1.4
125 -1.6
160 -1.6
200 -1.5
250 -1.5
315 -1.6
400 -1.5
500 -1.4
630 -1.4
800 -0.6
1000 3.7
1250 -0.5
1600 -1.0
2000 0.5
2500 3.5
3150 0.7
4000 -0.3
5000 2.8
6300 5.1
8000 0
10000 -1.3
12500 -2.2
16000 -3.1
20000 -3.4
GraphicEQ: 20 -0.2; 21 -0.3; 22 -0.4; 23 -0.6; 24 -0.7; 26 -1.0; 27 -1.2; 29 -1.5; 30 -1.7; 32 -2.1; 34 -2.4; 36 -2.8; 38 -3.2; 40 -3.5; 43 -4.0; 45 -4.3; 48 -4.7; 50 -4.9; 53 -5.3; 56 -5.5; 59 -5.8; 63 -6.1; 66 -6.2; 70 -6.4; 74 -6.6; 78 -6.7; 83 -6.9; 87 -6.9; 92 -7.0; 97 -7.1; 103 -7.2; 109 -7.2; 115 -7.2; 121 -7.3; 128 -7.3; 136 -7.3; 143 -7.4; 151 -7.4; 160 -7.4; 169 -7.4; 178 -7.4; 188 -7.4; 199 -7.4; 210 -7.4; 222 -7.4; 235 -7.4; 248 -7.4; 262 -7.4; 277 -7.4; 292 -7.4; 309 -7.4; 326 -7.4; 345 -7.4; 364 -7.4; 385 -7.3; 406 -7.3; 429 -7.3; 453 -7.3; 479 -7.2; 506 -7.2; 534 -7.1; 565 -7.0; 596 -6.9; 630 -6.8; 665 -6.7; 703 -6.5; 743 -6.1; 784 -5.7; 829 -5.1; 875 -4.2; 924 -3.2; 977 -2.3; 1032 -2.3; 1090 -3.1; 1151 -4.1; 1216 -4.8; 1284 -5.3; 1357 -5.6; 1433 -5.7; 1514 -5.7; 1599 -5.7; 1689 -5.5; 1784 -5.2; 1885 -4.8; 1991 -4.3; 2103 -3.7; 2221 -2.9; 2347 -2.3; 2479 -1.9; 2618 -2.0; 2766 -2.5; 2921 -3.1; 3086 -3.7; 3260 -4.1; 3443 -4.4; 3637 -4.5; 3842 -4.5; 4058 -4.4; 4287 -4.1; 4528 -3.6; 4783 -2.9; 5052 -2.1; 5337 -1.2; 5637 -0.4; 5955 -0.2; 6290 -0.7; 6644 -1.7; 7018 -2.7; 7414 -3.6; 7831 -4.4; 8272 -5.0; 8738 -5.5; 9230 -5.8; 9749 -6.1; 10298 -6.4; 10878 -6.6; 11490 -6.7; 12137 -6.8; 12821 -6.9; 13543 -7.0; 14305 -7.1; 15110 -7.1; 15961 -7.2; 16860 -7.2; 17809 -7.3; 18812 -7.3; 19871 -7.2

Superlux HD668B:
Preamp: -6.6dB
32 6.5
64 0
125 0
250 0
500 0
1000 0
2000 0
4000 3.7
8000 -5.1
16000 0.4
Preamp: -7.1dB
20 4.7
25 5.3
32 4.5
40 2.8
50 1.7
63 1.0
80 0.4
100 0
125 0
160 0
200 0
250 0
315 0
400 0
500 0
630 0
800 0
1000 0
1250 0
1600 0
2000 0.2
2500 0.4
3150 1.8
4000 5.9
5000 -3.3
6300 -0.7
8000 -5.1
10000 -2.2
12500 0
16000 0
20000 1.3
GraphicEQ: 20 -0.2; 21 -0.2; 22 -0.2; 23 -0.2; 24 -0.2; 26 -0.2; 27 -0.3; 29 -0.6; 30 -0.8; 32 -1.1; 34 -1.5; 36 -1.8; 38 -2.1; 40 -2.4; 43 -2.8; 45 -3.1; 48 -3.4; 50 -3.6; 53 -3.9; 56 -4.2; 59 -4.4; 63 -4.7; 66 -4.9; 70 -5.1; 74 -5.2; 78 -5.4; 83 -5.5; 87 -5.6; 92 -5.7; 97 -5.8; 103 -5.8; 109 -5.9; 115 -5.9; 121 -6.0; 128 -6.0; 136 -6.0; 143 -6.1; 151 -6.1; 160 -6.1; 169 -6.1; 178 -6.1; 188 -6.1; 199 -6.2; 210 -6.2; 222 -6.2; 235 -6.2; 248 -6.2; 262 -6.2; 277 -6.2; 292 -6.2; 309 -6.2; 326 -6.2; 345 -6.2; 364 -6.2; 385 -6.2; 406 -6.2; 429 -6.2; 453 -6.2; 479 -6.2; 506 -6.2; 534 -6.2; 565 -6.2; 596 -6.2; 630 -6.2; 665 -6.2; 703 -6.2; 743 -6.2; 784 -6.2; 829 -6.1; 875 -6.2; 924 -6.1; 977 -6.1; 1032 -6.1; 1090 -6.1; 1151 -6.1; 1216 -6.1; 1284 -6.1; 1357 -6.0; 1433 -6.0; 1514 -6.0; 1599 -6.0; 1689 -5.9; 1784 -5.9; 1885 -5.8; 1991 -5.8; 2103 -5.7; 2221 -5.6; 2347 -5.4; 2479 -5.3; 2618 -5.1; 2766 -4.8; 2921 -4.5; 3086 -4.0; 3260 -3.5; 3443 -2.9; 3637 -2.3; 3842 -1.8; 4058 -1.9; 4287 -2.6; 4528 -3.8; 4783 -5.5; 5052 -8.3; 5337 -11.1; 5637 -10.2; 5955 -8.1; 6290 -7.3; 6644 -7.2; 7018 -7.4; 7414 -8.2; 7831 -9.7; 8272 -12.1; 8738 -12.6; 9230 -10.4; 9749 -8.5; 10298 -7.6; 10878 -7.1; 11490 -6.8; 12137 -6.6; 12821 -6.5; 13543 -6.4; 14305 -6.4; 15110 -6.3; 15961 -6.3; 16860 -6.3; 17809 -6.3; 18812 -6.0; 19871 -5.3

_____________

Changelog:


Let me know what you think! :D

Latest thoughts:
Are we sure Wavelet doesnt import the convolution filters from Auto EQ (Ive never tried so I assume youve seen the import file is some kind of text file , not a .wav? )
 

jaakkopasanen

Member
Joined
Jul 12, 2020
Messages
87
Likes
343
Are we sure Wavelet doesnt import the convolution filters from Auto EQ (Ive never tried so I assume youve seen the import file is some kind of text file , not a .wav? )
I'm sure since I worked out the import format together with the Wavelet developer. Wavelet expect a 127 point EqualizerAPO GraphicEq string with the exact frequencies AutoEq produces.
 

Jimbob54

Grand Contributor
Forum Donor
Joined
Oct 25, 2019
Messages
11,066
Likes
14,697
I'm sure since I worked out the import format together with the Wavelet developer. Wavelet expect a 127 point EqualizerAPO GraphicEq string with the exact frequencies AutoEq produces.
Excellent work
 

MrOtto

Senior Member
Joined
Nov 4, 2020
Messages
453
Likes
357
Thanks for the guide. I'm trying to use Wavelet with a USB-C headphone dongle, but app says no music is playing and when I enable legacy mode and apply Auto EQ for my headphone, the sound doesn't change.
 

w1000i

Active Member
Forum Donor
Joined
Aug 31, 2019
Messages
260
Likes
138
Location
Jubail SA
Thanks for this great effort.
I use ROON to play my music, can I benefit from this GEQ ? Is there a way to import the EQ as a file into ROON ?

I have Focal Clear and want to EQ correctly.
 

Jimbob54

Grand Contributor
Forum Donor
Joined
Oct 25, 2019
Messages
11,066
Likes
14,697
Thanks for this great effort.
I use ROON to play my music, can I benefit from this GEQ ? Is there a way to import the EQ as a file into ROON ?

I have Focal Clear and want to EQ correctly.
Just go to the review of the Clear and copy amir's eq settings from the roon screen grab. Alternatively, check out oratory1990 for them, again, just type the freq, amplitude and q values into ROON. https://www.dropbox.com/s/hqb9zjsvc2nu5zc/Focal Clear.pdf?dl=0
 

w1000i

Active Member
Forum Donor
Joined
Aug 31, 2019
Messages
260
Likes
138
Location
Jubail SA

Jimbob54

Grand Contributor
Forum Donor
Joined
Oct 25, 2019
Messages
11,066
Likes
14,697
Thanks, but there is a convolution DSP option in ROON and I don't know if a file can be imported with the EQ or not.
Regards,
You could take a very long way round the houses and use something to create a convolved wav file from these eq settings then import that into the roon convolved eq settings. Or the better option which is copying amir's eq that he did in roon into ROON peq manually . This means you have exactly what Amir had in a couple of minutes. Just don't forget to add either a 5db preamp reduction or similar in headroom settings.
1617288866095.png
 
Last edited:

Phorize

Major Contributor
Forum Donor
Joined
Apr 26, 2019
Messages
1,533
Likes
2,060
Location
U.K
Is there any interest in generating "Convolution Equalizers" as well?
I'm running the scripts anyway...so I could include .WAV files.


-from AutoEQ

Although, I don't know where to store them (perhaps dropbox? or this forum?). But this forum doesnt attach .WAV files directly, which means .ZIP will need to used.

Let me know if this is worthwhile.
Thanks for all of your hard work on this. I’d find .wav files very useful to use with camilladsp.
 

GWolfman

Addicted to Fun and Learning
Forum Donor
Joined
Nov 3, 2020
Messages
624
Likes
1,041
Anyone have a good link explaining how convolution filters work? Video or text is ok...
 

Phorize

Major Contributor
Forum Donor
Joined
Apr 26, 2019
Messages
1,533
Likes
2,060
Location
U.K
Last edited:

Phorize

Major Contributor
Forum Donor
Joined
Apr 26, 2019
Messages
1,533
Likes
2,060
Location
U.K
I'll try to generate one. Do you have a headphone in mind that you want to try?
Thank you:) I have the akg k371 and the mass drop hd 6xx. The hd 6xx probably needs eq the most.
 

GWolfman

Addicted to Fun and Learning
Forum Donor
Joined
Nov 3, 2020
Messages
624
Likes
1,041
Pretty thorough explanation of the theory below:

https://www.dspguru.com/files/conv-dsp-tutorial.pdf

Edited as I linked the wrong article.
Thanks. I read the paper, but I think I was tripping/focusing over/on the math too much. But with the foundation provided by the paper, and these two YouTube videos (particularly the second):
&
I think I'm understanding it now.

I'm just curious as to how these are saved into WAV files and how it's all put together to make EQ adjustments. Let me take a stab and you can tell me how wrong I am, LOL:

A known/stadardized audio source/file/pattern is played, the output is recorded and saved as a WAV/audio file. This audio (output) file represents what the "system" (e.g., headphones/speakers) had output/generated/"played" with its own flaws/deficiencies baked in. (Q: Would the "system" also include the DAC and/or amp used?) The WAV file is then loaded into the DSP software and it analyzes the recorded audio from the first step, and based off the known/standardized input, calculates the affect (i.e., altered frequency response) the "system" (e.g., headphones/speakers) had on the input. The DSP software then generates and applies EQ (Q: anything done regarding timing?) adjustments so the output would/should match the known input by compensating for the "system's affect(s)".

In summary the DSP (software) is characterizing the "blackbox"/unknown system (e.g., headphones/speakers) by comparing a know input to a(n) recorded/observed output and combining/convolving the two to make a correction (e.g., EQ)? (Regarding convolution: or maybe the correct statement would be the convolution is the recorded output?)

Hoping I'm not totally lost on this...
 
Last edited:

m8o

Senior Member
Forum Donor
Joined
Jan 28, 2019
Messages
348
Likes
224
I would also throw the usual disclaimer here about graphic equalizer: it's not possible to implement all frequency response features with them. Especially the 10-band eq is limited due to the high bandwidth of the filters. If Amir has a filter at 6 kHz, it's not compatible with 10-band eq because it sits right in between the 4 and 8 kHz filters.

Let me first say, awesome post @sweetchaos . For me more so for the hows and whys. After reading some things I am going to fire the AutoEQ VM back up and redo some things.

I spent a huge chunk of yesterday getting AutoEQ working (pip, python versions, the vm env, dependencies, something else I'm forgetting I think - oh ya, pandas, whatever that is - were as they say, a "royal pita" -lol . But thanx to stackoverflow and other support sites for said dependencies, I prevailed). Then playing with variations of equalization produced for my new Audeze Euclid, with peq constrained to the filter count limits of the E1DA PowerDAC V2 DSP (the only [ahem] portable [lol] hp amp I have with the balls to drive the demanding Euclid with authority in the bass region) ... I can see how AutoEQ coupled with WebPlotDigitizer might change my life.

That said for me it just reinforced that "I dont like the Harman (or really, any generally accepted) target" rather than giving me some sort of epiphany in appreciation of it. I spent a good deal of time manually altering filter settings AutoEQ gave me. I'm going to give --sound_signature a try; not to simulate another hp's signature but rather to alter a target to my preference so I dont have to fiddle afterwards.

Moreso however in that regard I have some questions I'd like to pose to you Jaakko and why I replied to the above post, that are OT to this post having to do with use cases pertaining to the PowerDAC V2. What is your forum of choice where you spend your most time, where I can discuss my particular use cases? I will go there and post my questions. (Hope this tag when replying to your reply reaches you.) Thanx!
 
Last edited:
Top Bottom