forked from jaakkopasanen/AutoEq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_indexes.py
383 lines (330 loc) · 17.6 KB
/
update_indexes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
# -*- coding: utf-8 -*-
import os
import sys
from glob import glob
import urllib
import re
import json
from collections import OrderedDict
import numpy as np
from zipfile import ZipFile
from tabulate import tabulate
sys.path.insert(1, os.path.realpath(os.path.join(sys.path[0], os.pardir)))
from frequency_response import FrequencyResponse
from measurements.manufacturer_index import ManufacturerIndex
from constants import MOD_REGEX, ROOT_DIR
DIR_PATH = os.path.abspath(os.path.join(__file__, os.pardir))
def form_url(rel_path):
url = '/'.join(FrequencyResponse._split_path(rel_path))
url = './{}'.format(url)
url = urllib.parse.quote(url, safe="%/:=&?~#+!$,;'@()*[]")
return url
def get_urls(files):
urls = dict()
skipped = dict()
for path in files:
rel_path = os.path.relpath(path, DIR_PATH)
model = os.path.split(rel_path)[-1]
if model == 'README.md' or 'fake' in model.lower():
continue
if re.search(MOD_REGEX, model, flags=re.IGNORECASE):
# Skip measurements with sample or serial number, those have averaged results
normalized = re.sub(MOD_REGEX, '', model, flags=re.IGNORECASE)
try:
skipped[normalized].append(rel_path)
except KeyError as err:
skipped[normalized] = [rel_path]
continue
urls[model.lower()] = '- [{model}]({url})'.format(model=model, url=form_url(rel_path))
for model, rel_paths in skipped.items():
# Add skipped models with only one item, these have no averaged results
if len(rel_paths) == 1:
urls[model.lower()] = '- [{model}]({url})'.format(model=model, url=form_url(rel_paths[0]))
return urls
def write_recommendations():
urls = dict()
# Get links to Reference Audio Analyzer results
urls.update(get_urls(glob(os.path.abspath(
os.path.join(DIR_PATH, 'referenceaudioanalyzer', 'referenceaudioanalyzer_siec_harman_in-ear_2019v2', '*')))))
urls.update(get_urls(glob(os.path.abspath(
os.path.join(DIR_PATH, 'referenceaudioanalyzer', 'referenceaudioanalyzer_hdm1_harman_over-ear_2018', '*')))))
urls.update(get_urls(glob(os.path.abspath(
os.path.join(DIR_PATH, 'referenceaudioanalyzer', 'referenceaudioanalyzer_hdm-x_harman_over-ear_2018', '*')))))
# Get links to Headphone.com results
urls.update(get_urls(
glob(os.path.abspath(os.path.join(DIR_PATH, 'headphonecom', 'headphonecom_harman_over-ear_2018', '*')))))
urls.update(get_urls(
glob(os.path.abspath(os.path.join(DIR_PATH, 'headphonecom', 'headphonecom_harman_in-ear_2019v2', '*')))))
# Get links to Rtings results
urls.update(get_urls(glob(os.path.abspath(os.path.join(DIR_PATH, 'rtings', 'rtings_harman_over-ear_2018', '*')))))
urls.update(get_urls(glob(os.path.abspath(os.path.join(DIR_PATH, 'rtings', 'rtings_harman_in-ear_2019v2', '*')))))
# Get links to Innerfidelity results
urls.update(get_urls(
glob(os.path.abspath(os.path.join(DIR_PATH, 'innerfidelity', 'innerfidelity_harman_over-ear_2018', '*')))))
urls.update(get_urls(
glob(os.path.abspath(os.path.join(DIR_PATH, 'innerfidelity', 'innerfidelity_harman_in-ear_2019v2', '*')))))
# Get links to Crinacle results
urls.update(
get_urls(glob(os.path.abspath(os.path.join(DIR_PATH, 'crinacle', 'ears-711_harman_over-ear_2018', '*')))))
urls.update(
get_urls(glob(os.path.abspath(os.path.join(DIR_PATH, 'crinacle', 'gras_43ag-7_harman_over-ear_2018', '*')))))
urls.update(get_urls(glob(os.path.abspath(os.path.join(DIR_PATH, 'crinacle', 'harman_in-ear_2019v2', '*')))))
# Get links to oratory1990 results
urls.update(get_urls(glob(os.path.abspath(os.path.join(DIR_PATH, 'oratory1990', 'harman_over-ear_2018', '*')))))
urls.update(get_urls(glob(os.path.abspath(os.path.join(DIR_PATH, 'oratory1990', 'harman_in-ear_2019v2', '*')))))
with open(os.path.join(DIR_PATH, 'README.md'), 'w', encoding='utf-8') as f:
keys = sorted(urls.keys(), key=lambda s: s.lower())
unique = len(set(re.sub(r'\(.+\)$', '', x) for x in urls.keys()))
s = f'''# Recommended Results
This is a list of recommended results. Results for other measurements and target curves are available for many
headphones, these can be found in the
[full index](./INDEX.md).
Recommendation priority is: oratory1990 > Crinacle > Innerfidelity > Rtings > Headphone.com >
Reference Audio Analyzer. This means if there are measurements from multiple sources for the same headphone
model only the highest priority result will be shown in this list.
This list has {unique} headphone models covered but if your headphone is missing you can create settings for
it yourself by following this guide:
[Equalizing Headphones the Easy Way](https://medium.com/@jaakkopasanen/make-your-headphones-sound-supreme-1cbd567832a9)
Headphone ranking based on Harman listener preference scores can be found in the
[Headphone Ranking](./RANKING.md).
'''
s += '\n'.join([urls[key] for key in keys])
f.write(re.sub('\n[ \t]+', '\n', s).strip())
def get_lines(dirs, note=None, path_root=DIR_PATH):
lines = []
for path in dirs:
rel_path = os.path.relpath(path, path_root)
model = os.path.split(rel_path)[-1]
if model == 'README.md':
continue
s = f'- [{model}]({form_url(rel_path)})'
if note is not None:
s += f' {note}'
lines.append(s)
return lines
def write_full_index():
lines = []
# Get links to Reference Audio Analyzer results
lines.extend(get_lines(
glob(os.path.abspath(
os.path.join(DIR_PATH, 'referenceaudioanalyzer', 'referenceaudioanalyzer_hdm-x_harman_over-ear_2018',
'*'))),
note='by Reference Audio Analyzer, HDM-X'))
lines.extend(get_lines(
glob(os.path.abspath(
os.path.join(DIR_PATH, 'referenceaudioanalyzer', 'referenceaudioanalyzer_hdm1_harman_over-ear_2018', '*'))),
note='by Reference Audio Analyzer, HDM1'))
lines.extend(get_lines(
glob(os.path.abspath(
os.path.join(DIR_PATH, 'referenceaudioanalyzer', 'referenceaudioanalyzer_siec_harman_in-ear_2019v2', '*'))),
note='by Reference Audio Analyzer'))
# Get links to Headphone.com results
lines.extend(get_lines(
glob(os.path.abspath(os.path.join(DIR_PATH, 'headphonecom', 'headphonecom_harman_over-ear_2018', '*'))),
note='by Headphone.com'))
lines.extend(get_lines(
glob(os.path.abspath(os.path.join(DIR_PATH, 'headphonecom', 'headphonecom_harman_in-ear_2019v2', '*'))),
note='by Headphone.com'))
# Get links to Rtings results
lines.extend(get_lines(
glob(os.path.abspath(os.path.join(DIR_PATH, 'rtings', 'rtings_harman_over-ear_2018', '*'))),
note='by Rtings'))
lines.extend(get_lines(
glob(os.path.abspath(os.path.join(DIR_PATH, 'rtings', 'rtings_harman_in-ear_2019v2', '*'))),
note='by Rtings'))
# Get links to Innerfidelity results
lines.extend(get_lines(
glob(os.path.abspath(os.path.join(DIR_PATH, 'innerfidelity', 'innerfidelity_harman_over-ear_2018', '*'))),
note='by Innerfidelity'))
lines.extend(get_lines(
glob(os.path.abspath(os.path.join(DIR_PATH, 'innerfidelity', 'innerfidelity_harman_in-ear_2019v2', '*'))),
note='by Innerfidelity'))
# Get links to Crinacle results
lines.extend(get_lines(
glob(os.path.abspath(os.path.join(DIR_PATH, 'crinacle', 'ears-711_harman_over-ear_2018', '*'))),
note='by Crinacle, Ears-711'))
lines.extend(get_lines(
glob(os.path.abspath(os.path.join(DIR_PATH, 'crinacle', 'gras_43ag-7_harman_over-ear_2018', '*'))),
note='by Crinacle, GRAS 43AG-7'))
lines.extend(get_lines(
glob(os.path.abspath(os.path.join(DIR_PATH, 'crinacle', 'harman_in-ear_2019v2', '*'))),
note='by Crinacle'))
# Get links to oratory1990 results
lines.extend(get_lines(
glob(os.path.abspath(os.path.join(DIR_PATH, 'oratory1990', 'harman_over-ear_2018', '*'))),
note='by oratory1990'))
lines.extend(get_lines(
glob(os.path.abspath(os.path.join(DIR_PATH, 'oratory1990', 'harman_in-ear_2019v2', '*'))),
note='by oratory1990'))
lines = sorted(lines, key=lambda s: s.lower())
with open(os.path.join(DIR_PATH, 'INDEX.md'), 'w', encoding='utf-8') as f:
s = '''# Index
This is a list of all equalization profiles. Target is in parentheses if there are results with multiple targets
from the same source.
'''
s += '\n'.join(lines)
f.write(re.sub('\n[ \t]+', '\n', s).strip() + '\n')
def write_reference_audio_analyzer_index():
# Get links to Reference Audio Analyzer results
base_dir = os.path.abspath(os.path.join(DIR_PATH, 'referenceaudioanalyzer'))
lines = get_lines(glob(os.path.join(base_dir, '*', '*')), path_root=base_dir)
lines = sorted(lines, key=lambda s: s.lower())
with open(os.path.join(DIR_PATH, 'referenceaudioanalyzer', 'README.md'), 'w', encoding='utf-8') as f:
f.write('# Reference Audio Analyzer Results\n\n' + '\n'.join(lines) + '\n')
def write_headphonecom_index():
# Get links to Reference Audio Analyzer results
base_dir = os.path.abspath(os.path.join(DIR_PATH, 'headphonecom'))
lines = get_lines(glob(os.path.join(base_dir, '*', '*')), path_root=base_dir)
lines = sorted(lines, key=lambda s: s.lower())
with open(os.path.join(DIR_PATH, 'headphonecom', 'README.md'), 'w', encoding='utf-8') as f:
f.write('# Headphone.com Results\n\n' + '\n'.join(lines) + '\n')
def write_rtings_index():
# Get links to Reference Audio Analyzer results
base_dir = os.path.abspath(os.path.join(DIR_PATH, 'rtings'))
lines = get_lines(glob(os.path.join(base_dir, '*', '*')), path_root=base_dir)
lines = sorted(lines, key=lambda s: s.lower())
with open(os.path.join(DIR_PATH, 'rtings', 'README.md'), 'w', encoding='utf-8') as f:
f.write('# Rtings Results\n\n' + '\n'.join(lines) + '\n')
def write_innerfidelity_index():
# Get links to Reference Audio Analyzer results
base_dir = os.path.abspath(os.path.join(DIR_PATH, 'innerfidelity'))
lines = get_lines(glob(os.path.join(base_dir, '*', '*')), path_root=base_dir)
lines = sorted(lines, key=lambda s: s.lower())
with open(os.path.join(DIR_PATH, 'innerfidelity', 'README.md'), 'w', encoding='utf-8') as f:
f.write('# Innerfidelity Results\n\n' + '\n'.join(lines) + '\n')
def write_crinacle_index():
base_dir = os.path.abspath(os.path.join(DIR_PATH, 'crinacle'))
lines = get_lines(
glob(os.path.join(base_dir, 'ears-711_harman_over-ear_2018', '*')), path_root=base_dir, note='Ears-711')
lines.extend(get_lines(glob(os.path.join(base_dir, 'gras_43ag-7_harman_over-ear_2018', '*')), path_root=base_dir))
lines.extend(get_lines(glob(os.path.join(base_dir, 'harman_in-ear_2019v2', '*')), path_root=base_dir))
lines = sorted(lines, key=lambda s: s.lower())
with open(os.path.join(DIR_PATH, 'crinacle', 'README.md'), 'w', encoding='utf-8') as f:
f.write('# Crinacle Results\n\n' + '\n'.join(lines) + '\n')
def write_oratory1990_index():
# Get links to Reference Audio Analyzer results
base_dir = os.path.abspath(os.path.join(DIR_PATH, 'oratory1990'))
lines = get_lines(glob(os.path.join(base_dir, '*', '*')), path_root=base_dir)
lines = sorted(lines, key=lambda s: s.lower())
with open(os.path.join(DIR_PATH, 'oratory1990', 'README.md'), 'w', encoding='utf-8') as f:
f.write('# oratory1990 Results\n\n' + '\n'.join(lines) + '\n')
def write_hesuvi_zip():
os.makedirs(os.path.join(DIR_PATH, 'hesuvi'), exist_ok=True)
manufacturers = ManufacturerIndex()
zip_object = ZipFile(os.path.join(DIR_PATH, 'hesuvi.zip'), 'w')
dir_paths = [
os.path.join(DIR_PATH, 'oratory1990'),
os.path.join(DIR_PATH, 'crinacle', 'gras_43ag-7_harman_over-ear_2018'),
os.path.join(DIR_PATH, 'crinacle', 'ears-711_harman_over-ear_2018'),
os.path.join(DIR_PATH, 'innerfidelity'),
os.path.join(DIR_PATH, 'rtings'),
os.path.join(DIR_PATH, 'headphonecom'),
os.path.join(DIR_PATH, 'referenceaudioanalyzer'),
]
zip_files = set()
for dir_path in dir_paths:
for fp in glob(os.path.join(dir_path, '**', '* GraphicEQ.txt'), recursive=True):
_, name = os.path.split(fp)
name = name.replace(' GraphicEQ.txt', '')
if re.search(MOD_REGEX, name, flags=re.IGNORECASE):
# Skip samples, there are averaged results available
continue
manufacturer, _ = manufacturers.find(name)
name = manufacturers.model(name)
arcname = f'eq/{manufacturer}/{name}.txt'
if arcname in zip_files:
# Skip duplicates
continue
with open(fp, 'r', encoding='utf-8') as fh:
s = fh.read()
data = np.array([x.split() for x in s.split(': ')[1].split('; ')], dtype='float')
sl = np.logical_and(data[:, 0] > 100, data[:, 0] < 10000)
data[:, 1] -= np.mean(data[sl, 1])
s = 'GraphicEQ: '
s += '; '.join([f'{x[0]:.0f} {x[1]:.1f}' for x in data])
zip_object.writestr(arcname, s)
zip_files.add(arcname)
zip_object.close()
def ranking_row(file_path, target, form='onear'):
dir_path = os.path.abspath(os.path.join(file_path, os.pardir))
rel_path = os.path.relpath(dir_path, os.path.join(ROOT_DIR, 'results'))
url = form_url(rel_path)
fr = FrequencyResponse.read_from_csv(file_path)
if re.search(MOD_REGEX, fr.name):
return None
fr.interpolate()
fr.compensate(target, bass_boost_gain=0.0) # Pre-computed results are with Harman target without bass
if form == 'onear':
score, std, slope = fr.harman_onear_preference_score()
return [f'[{fr.name}]({url})', f'{score:.0f}', f'{std:.2f}', f'{slope:.2f}']
elif form == 'inear':
score, std, slope, mean = fr.harman_inear_preference_score()
return [f'[{fr.name}]({url})', f'{score:.0f}', f'{std:.2f}', f'{slope:.2f}', f'{mean:.2f}']
if '|' in f'[{fr.name}]({url})':
print(file_path)
print(fr.name)
print(f'[{fr.name}]({url})')
def write_ranking_table():
harman_inear = os.path.join(ROOT_DIR, 'compensation', 'harman_in-ear_2019v2.csv')
harman_inear = FrequencyResponse.read_from_csv(harman_inear)
harman_overear = os.path.join(ROOT_DIR, 'compensation', 'harman_over-ear_2018.csv')
harman_overear = FrequencyResponse.read_from_csv(harman_overear)
onear_rows = []
# Over-ear
files = dict()
for fp in glob(os.path.join(ROOT_DIR, 'results', 'crinacle', 'gras_43ag-7_harman_over-ear_2018', '*', '*.csv')):
files[os.path.split(fp)[1]] = fp
for fp in glob(os.path.join(ROOT_DIR, 'results', 'oratory1990', 'harman_over-ear_2018', '*', '*.csv')):
files[os.path.split(fp)[1]] = fp
for fp in files.values():
row = ranking_row(fp, harman_overear, 'onear')
if row:
onear_rows.append(row)
onear_rows = sorted(onear_rows, key=lambda row: float(row[1]), reverse=True)
onear_str = tabulate(onear_rows, headers=['Name', 'Score', 'STD (dB)', 'Slope'], tablefmt='orgtbl')
onear_str = onear_str.replace('+', '|').replace('|-', '|:')
inear_rows = []
# In-ear
files = dict()
for fp in glob(os.path.join(ROOT_DIR, 'results', 'crinacle', 'harman_in-ear_2019v2', '*', '*.csv')):
files[os.path.split(fp)[1]] = fp
for fp in glob(os.path.join(ROOT_DIR, 'results', 'oratory1990', 'harman_in-ear_2019v2', '*', '*.csv')):
files[os.path.split(fp)[1]] = fp
for fp in files.values():
row = ranking_row(fp, harman_inear, 'inear')
if row:
inear_rows.append(row)
inear_str = sorted(inear_rows, key=lambda row: float(row[1]), reverse=True)
inear_str = tabulate(inear_str, headers=['Name', 'Score', 'STD (dB)', 'Slope', 'Average (dB)'], tablefmt='orgtbl')
inear_str = inear_str.replace('-+-', '-|-').replace('|-', '|:')
s = f'''# Headphone Ranking
Headphones ranked by Harman headphone listener preference scores.
Tables include the preference score (Score), standard deviation of the error (STD), slope of the logarithimc
regression fit of the error (Slope) for both headphone types and average of the absolute error (Average) for in-ear
headphones. STD tells how much the headphone deviates from neutral and slope tells if the headphone is warm (< 0) or
bright (> 0).
Keep in mind that these numbers are calculated with deviations from Harman targets. The linked results use different
levels of bass boost so the slope numbers here won't match the error curves you see in the linked results.
Over-ear table includes headphones measured by oratory1990 and Crinacle using GRAS systems. Measurements from
other databases and systems are not included because they are not compatible with measurements, targets and
preference scoring developed by Sean Olive et al.
## Over-ear Headphones
{onear_str}
## In-ear Headphones
{inear_str}
'''
with open(os.path.join(ROOT_DIR, 'results', 'RANKING.md'), 'w', encoding='utf-8') as fh:
fh.write(re.sub('\n[ \t]+', '\n', s).strip())
def main():
write_recommendations()
write_ranking_table()
write_full_index()
write_reference_audio_analyzer_index()
write_headphonecom_index()
write_rtings_index()
write_innerfidelity_index()
write_crinacle_index()
write_oratory1990_index()
write_hesuvi_zip()
if __name__ == '__main__':
main()