Verifying decodeAudioData(), Web Audio multichannel routing, and direct
<audio> element playback.
MediaElementAudioSourceNode.channelCount is 2 by W3C Spec: The
channelCount property on an AudioNode specifies how inputs to that node are
up/down-mixed. Because source nodes have 0 inputs,
channelCount defaults to 2 and has no effect on output channels. The actual channel count is found
via decodeAudioData() or by querying output pin connections.
createMediaElementSource() detaches native speaker output: Calling
createMediaElementSource(audio) redirects audio away from standard browser playback into the Web
Audio graph. If the context is suspended (autoplay policy) or not
routed to destination, the player goes silent.