speaker-calibration 2.2.164 → 2.2.165
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/example/NoSleep.min.js +2 -0
- package/dist/example/i18n.js +1316 -1047
- package/dist/example/listener.html +10 -0
- package/dist/main.js +2 -2
- package/package.json +1 -1
- package/src/tasks/combination/combination.js +8 -8
package/package.json
CHANGED
|
@@ -2699,14 +2699,14 @@ class Combination extends AudioCalibrator {
|
|
|
2699
2699
|
|
|
2700
2700
|
//new lCalib found at top of calibration files *1000hz, make sure to correct
|
|
2701
2701
|
//based on zeroing of 1000hz, search for "*1000Hz"
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
const ID = "712-5669";
|
|
2709
|
-
const OEM = "minidsp";
|
|
2702
|
+
const ID = isSmartPhone ? micModelNumber : micSerialNumber;
|
|
2703
|
+
const OEM = isSmartPhone
|
|
2704
|
+
? micModelName === 'UMIK-1' || micModelName === 'UMIK-2'
|
|
2705
|
+
? 'minidsp'
|
|
2706
|
+
: this.deviceInfo.OEM.toLowerCase().split(' ').join('')
|
|
2707
|
+
: micManufacturer.toLowerCase().split(' ').join('');
|
|
2708
|
+
// const ID = "712-5669";
|
|
2709
|
+
// const OEM = "minidsp";
|
|
2710
2710
|
const micInfo = {
|
|
2711
2711
|
micModelName: isSmartPhone ? micModelName : microphoneName,
|
|
2712
2712
|
OEM: isSmartPhone
|