Merge branch 'develop' of https://github.com/ciderapp/Cider into develop
This commit is contained in:
commit
0297c19a10
3 changed files with 6 additions and 2 deletions
|
@ -127,4 +127,5 @@ Update 17/02/2022 10:00 UTC
|
||||||
+ `settings.header.debug`: Added for `en_US`.
|
+ `settings.header.debug`: Added for `en_US`.
|
||||||
+ `settings.option.debug.copy_log`: Replaces `settings.option.experimental.copy_log`.
|
+ `settings.option.debug.copy_log`: Replaces `settings.option.experimental.copy_log`.
|
||||||
+ `settings.option.debug.openAppData`: Added for `en_US`
|
+ `settings.option.debug.openAppData`: Added for `en_US`
|
||||||
+ `action.open`: Added for `en_US`
|
+ `action.open`: Added for `en_US`
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,8 @@ const MusicKitInterop = {
|
||||||
if (trackFilter || !app.cfg.lastfm.filterLoop) {
|
if (trackFilter || !app.cfg.lastfm.filterLoop) {
|
||||||
global.ipcRenderer.send('nowPlayingItemDidChangeLastFM', attributes);
|
global.ipcRenderer.send('nowPlayingItemDidChangeLastFM', attributes);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
global.ipcRenderer.send('nowPlayingItemDidChange', MusicKitInterop.getAttributes());
|
||||||
});
|
});
|
||||||
|
|
||||||
MusicKit.getInstance().addEventListener(MusicKit.Events.authorizationStatusDidChange, () => {
|
MusicKit.getInstance().addEventListener(MusicKit.Events.authorizationStatusDidChange, () => {
|
||||||
|
|
|
@ -114,12 +114,13 @@ var CiderAudio = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
llpw_h2_2: function (status, hierarchy){
|
llpw_h2_2: function (status, hierarchy){
|
||||||
if (status === true) {
|
if (status === true) { // 23 Band Adjustment
|
||||||
let LLPW_Q = [5, 1, 3.536, 1.25, 8.409, 1.25, 14.14, 7.071, 5, 0.625, 16.82, 20, 20, 20, 28.28, 28.28, 28.28, 20, 33.64, 33.64, 10, 28.28, 7.071, 3.856];
|
let LLPW_Q = [5, 1, 3.536, 1.25, 8.409, 1.25, 14.14, 7.071, 5, 0.625, 16.82, 20, 20, 20, 28.28, 28.28, 28.28, 20, 33.64, 33.64, 10, 28.28, 7.071, 3.856];
|
||||||
let LLPW_GAIN = [0.38, -1.81, -0.23, -0.51, 0.4, 0.84, 0.36, -0.34, 0.27, -1.2, -0.42, -0.67, 0.81, 1.31, -0.71, 0.68, -1.04, 0.79, -0.73, -1.33, 1.17, 0.57, 0.35, 6.33];
|
let LLPW_GAIN = [0.38, -1.81, -0.23, -0.51, 0.4, 0.84, 0.36, -0.34, 0.27, -1.2, -0.42, -0.67, 0.81, 1.31, -0.71, 0.68, -1.04, 0.79, -0.73, -1.33, 1.17, 0.57, 0.35, 6.33];
|
||||||
let LLPW_FREQUENCIES = [16.452, 24.636, 37.134, 74.483, 159.54, 308.18, 670.21, 915.81, 1200.7, 2766.4, 2930.6, 4050.6, 4409.1, 5395.2, 5901.6, 6455.5, 7164.1, 7724.1, 8449, 10573, 12368, 14198, 17910, 18916];
|
let LLPW_FREQUENCIES = [16.452, 24.636, 37.134, 74.483, 159.54, 308.18, 670.21, 915.81, 1200.7, 2766.4, 2930.6, 4050.6, 4409.1, 5395.2, 5901.6, 6455.5, 7164.1, 7724.1, 8449, 10573, 12368, 14198, 17910, 18916];
|
||||||
CiderAudio.audioNodes.llpw = []
|
CiderAudio.audioNodes.llpw = []
|
||||||
|
|
||||||
|
|
||||||
for (i = 0; i < LLPW_FREQUENCIES.length; i++) {
|
for (i = 0; i < LLPW_FREQUENCIES.length; i++) {
|
||||||
CiderAudio.audioNodes.llpw[i] = CiderAudio.context.createBiquadFilter();
|
CiderAudio.audioNodes.llpw[i] = CiderAudio.context.createBiquadFilter();
|
||||||
CiderAudio.audioNodes.llpw[i].type = 'peaking'; // 'peaking';
|
CiderAudio.audioNodes.llpw[i].type = 'peaking'; // 'peaking';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue