Quick Sign In:  

Forum: VirtualDJ Technical Support

Topic: Mic input not showing up as possible deck input in 2020 skin?

This topic is old and might contain outdated or incorrect information.

It looks like a mic input doesn't show up as a possible deck input when you go to linein/timecode pane
Is that correct?
A funny thing then is that if you switch the input type to line-in in audio settings, even though it's a Mic, it still works, and then becomes selectable
 

Posted Thu 16 Apr 20 @ 6:57 am
NicotuxHome userMember since 2014
totaly right, it look like the old bug in the old skin ^^

panel only implements line in and/or timecode
visibility="get_hastimecode && not get_haslinein"
visibility="not get_hastimecode && get_haslinein"
visibility="get_hastimecode && get_haslinein"
visibility="not get_hastimecode && not get_haslinein"

but actions in LINE-IN when visibility="not get_hastimecode && get_haslinein" and in "AUX" when visibility="get_hastimecode && get_haslinein" are
action="get_haslinein ? linein : get_hasmic ? linein 'mic' : linein"
action="get_haslinein ? linein_rec : get_hasmic ? mic_rec : linein_rec"

so that mic is not usable when no line in and... line in takes preference missing mic

visibility=" get_hasinput && not get_hastimecode && not get_haslinein && get_hasmic"
visibility="get_hasmic"
or ... has_aux
timecode linein mic aux ==> 16 basic cases to handle
 

Posted Thu 16 Apr 20 @ 7:57 am


(Old topics and forums are automatically closed)