Audio cut outs when selecting new media - Denon AVR 2307 template AVC-A1SRA (RS232)
http://forum.linuxmce.org/index.php?topic=7393.0
When selecting new media, it starts to play immediately - but after a second or so - audio cuts out as Linuxmce seems to reset the Denon AVR 2307's outputs. Then starts playing again. This doesn't happen if I change songs in a playlist - but if I load a new playlist or new media it happens every time...
Fix provided by Thom. Outlined in above forum page.
#373 (closed) Private Method Listing - add the below code to existing
def switchInput(newinput)
if newinput = @currentInput
else
@currentInput = input
conn_.Send(newinput)
end
end
#355 (closed) Process Initialize - replace inputSources section from "VDP" to switchInput("VDP") etc.. as below:
$inputSources = {
switchInput("VDP") => 176,
switchInput("VCR-3") => 284,
switchInput("VCR-2") => 283,
switchInput("VCR-1") => 282,
switchInput("V.AUX") => 285,
switchInput("TV" ) => 161,
switchInput("TUNER") => 166,
switchInput("PHONO") => 163,
switchInput("MD/TAPE2") => 174,
switchInput("DVD") => 165,
switchInput("DBS/SAT") => 281,
switchInput("CD") => 162,
switchInput("CDR/TAPE1") => 420
}
Cheers, Adriel.