[SOLVED] Visual Graphic EQ issue (from v8.3.7) - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: [SOLVED] Visual Graphic EQ issue (from v8.3.7) (/showthread.php?tid=6230) |
Visual Graphic EQ issue (from v8.3.7) - maschinebrennt - 02-15-2024 Hi to all. This is a graphic equalizer ("Graphic EQ") issue that started with version 8.3.7 (and continues with 8.3.8): the numeric values do not match those represented in the corresponding graphs (e.g. 3 files attached), and it also happens with a custom curve: [attachment=3624][attachment=3625][attachment=3626] Thanks. Best regards. Edit: fixed in 8.3.9, thanks RE: Visual Graphic EQ issue (from v8.3.7) - Tim Curtis - 02-15-2024 I can repro. It looks like bug in the file /var/www/templates/eqg-config.html. The N in the variable $_select[freqN] is not correct in the code after the first two <div class="eqg-vslider"> blocks <div id="equalizer" class="sliderbank"> <div class="eqg-label">Alsaequal values</div> <div class="eqg-vslider-group"> <div class="eqg-vslider"> <div id="freq1">$_select[freq1]</div> <input class="vslide2" type="range" min="28" max="94" step="1" name="freq1" value="$_select[freq1]" oninput="updEqgFreq('#freq1', this.value)"> <div>31</div> </div> <div class="eqg-vslider"> <div id="freq2">$_select[freq2]</div> <input class="vslide2" type="range" min="28" max="94" step="1" name="freq2" value="$_select[freq2]" oninput="updEqgFreq('#freq2', this.value)"> <div>63</div> </div> <div class="eqg-vslider"> <div id="freq3">$_select[freq1]</div> <input class="vslide2" type="range" min="28" max="94" step="1" name="freq3" value="$_select[freq3]" oninput="updEqgFreq('#freq3', this.value)"> <div>125</div> </div> <div class="eqg-vslider"> <div id="freq4">$_select[freq2]</div> <input class="vslide2" type="range" min="28" max="94" step="1" name="freq4" value="$_select[freq4]" oninput="updEqgFreq('#freq4', this.value)"> <div>250</div> </div> <div class="eqg-vslider"> <div id="freq5">$_select[freq1]</div> <input class="vslide2" type="range" min="28" max="94" step="1" name="freq5" value="$_select[freq5]" oninput="updEqgFreq('#freq5', this.value)"> <div>500</div> </div> <div class="eqg-vslider"> <div id="freq6">$_select[freq2]</div> <input class="vslide2" type="range" min="28" max="94" step="1" name="freq6" value="$_select[freq6]" oninput="updEqgFreq('#freq6', this.value)"> <div>1K</div> </div> To fix just edit the file and specify N corresponding to the N in name="freqN". If thats not feasible then I can make an updated file available for download and install. Let me know. RE: Visual Graphic EQ issue (from v8.3.7) - maschinebrennt - 02-16-2024 I'm not an expert, so I wouldn't want to risk messing up. However it is not urgent, the fix is also good for a next major release Thank you very much RE: Visual Graphic EQ issue (from v8.3.7) - Tim Curtis - 02-16-2024 Sure, no prob. There will be one more Bullseye release this month to fix any bugs and maybe make some minor updates. |