CAP Addition
This commit is contained in:
parent
280664496c
commit
ce80e88d6a
4 changed files with 27 additions and 14 deletions
|
@ -379,6 +379,30 @@ const CiderAudio = {
|
||||||
CiderAudio.audioNodes.llpw = []
|
CiderAudio.audioNodes.llpw = []
|
||||||
|
|
||||||
switch (app.cfg.audio.maikiwiAudio.ciderPPE_value) {
|
switch (app.cfg.audio.maikiwiAudio.ciderPPE_value) {
|
||||||
|
case "MAIKIWI":
|
||||||
|
CiderAudio.audioNodes.llpw[0] = CiderAudio.context.createConvolver();
|
||||||
|
CiderAudio.audioNodes.llpw[0].normalize = false;
|
||||||
|
fetch('./audio/impulses/CAP_Maikiwi.wav').then(async (impulseData) => {
|
||||||
|
let bufferedImpulse = await impulseData.arrayBuffer();
|
||||||
|
CiderAudio.audioNodes.llpw[0].buffer = await CiderAudio.context.decodeAudioData(bufferedImpulse);
|
||||||
|
});
|
||||||
|
|
||||||
|
switch (hierarchy) {
|
||||||
|
case 2:
|
||||||
|
try { CiderAudio.audioNodes.llpw[0].connect(CiderAudio.audioNodes.vibrantbassNode[0]); } catch (e) { }
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
try { CiderAudio.audioNodes.llpw[0].connect(CiderAudio.audioNodes.audioBands[0]); } catch (e) { }
|
||||||
|
break;
|
||||||
|
case 0:
|
||||||
|
try { CiderAudio.audioNodes.llpw[0].connect(CiderAudio.context.destination); } catch (e) { }
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
console.debug("[Cider][Audio] CAP - MaikiwiSignature Mode");
|
||||||
|
break;
|
||||||
|
|
||||||
case "NATURAL":
|
case "NATURAL":
|
||||||
CiderAudio.audioNodes.llpw[0] = CiderAudio.context.createConvolver();
|
CiderAudio.audioNodes.llpw[0] = CiderAudio.context.createConvolver();
|
||||||
CiderAudio.audioNodes.llpw[0].normalize = false;
|
CiderAudio.audioNodes.llpw[0].normalize = false;
|
||||||
|
|
BIN
src/renderer/audio/impulses/CAP_Maikiwi.wav
Normal file
BIN
src/renderer/audio/impulses/CAP_Maikiwi.wav
Normal file
Binary file not shown.
Binary file not shown.
|
@ -36,6 +36,7 @@
|
||||||
<select class="md-select" style="width:180px;"
|
<select class="md-select" style="width:180px;"
|
||||||
v-model="app.cfg.audio.maikiwiAudio.ciderPPE_value"
|
v-model="app.cfg.audio.maikiwiAudio.ciderPPE_value"
|
||||||
v-on:change="CiderAudio.hierarchical_loading()">
|
v-on:change="CiderAudio.hierarchical_loading()">
|
||||||
|
<option value="MAIKIWI">Maikiwi</option>
|
||||||
<option value="NATURAL">Natural</option>
|
<option value="NATURAL">Natural</option>
|
||||||
<option value="STANDARD">
|
<option value="STANDARD">
|
||||||
{{$root.getLz('settings.option.audio.enableAdvancedFunctionality.ciderPPEStrength.standard')}}
|
{{$root.getLz('settings.option.audio.enableAdvancedFunctionality.ciderPPEStrength.standard')}}
|
||||||
|
@ -156,14 +157,7 @@
|
||||||
<small>Re-textures the vocals by carving out the frequencies and adjusts them to the
|
<small>Re-textures the vocals by carving out the frequencies and adjusts them to the
|
||||||
selected profile.<br>
|
selected profile.<br>
|
||||||
<b>Modern:</b>
|
<b>Modern:</b>
|
||||||
Embracing 21st Century Equipment, this revives old recordings while preserving the
|
Modernizes vocals that was recorded on old microphones while preserving the artist's individualistic style.<br>
|
||||||
Master's original intent.<br>
|
|
||||||
<b>Intimate:</b>
|
|
||||||
Bringing the vocals closer to your heart, communicating only the most personal
|
|
||||||
connection between you and the artist.<br>
|
|
||||||
<b>Breathy:</b>
|
|
||||||
Giving the perfectionists a new voice, this adds naturality to the vocals by making them
|
|
||||||
more breathy and more natural. <br>
|
|
||||||
<b>Articulate:</b>
|
<b>Articulate:</b>
|
||||||
Wrapping every detail of the vocal to your ear, resulting in a more expressive voice.
|
Wrapping every detail of the vocal to your ear, resulting in a more expressive voice.
|
||||||
</small>
|
</small>
|
||||||
|
@ -179,15 +173,10 @@
|
||||||
<option value="intimate">
|
<option value="intimate">
|
||||||
Intimate
|
Intimate
|
||||||
</option>
|
</option>
|
||||||
<option value="breathy">
|
|
||||||
Breathy
|
|
||||||
</option>
|
|
||||||
<option value="articulate">
|
|
||||||
Articulate
|
|
||||||
</option>
|
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue