firefox_input.connect(audio_processing_output)
firefox_input.disconnect(alsa_output)
-# Connect the last output to the last input -- during testing it was found that
-# Midi channel is normally listed first, so this avoids that.
-# source = outputs[-1]
-# sink = inputs[-1]
-# source.connect(sink)
-
-# Fun Fact! You can connect/disconnect in either order!
-# sink.disconnect(source) # Tada!
-
-# Default Input/Output links will be made with left-left and right-right
-# connections; in other words, a straight stereo connection.
-# It's possible to manually cross the lines, however!
-# source.right.connect(sink.left)
-# source.left.connect(sink.right)
+
+
+
jack_source.disconnect(firefox)
audio_processing.disconnect(alsa_inputs)
-# Connect the last output to the last input -- during testing it was found that
-# Midi channel is normally listed first, so this avoids that.
-# source = outputs[-1]
-# sink = inputs[-1]
-# source.connect(sink)
-
-# Fun Fact! You can connect/disconnect in either order!
-# sink.disconnect(source) # Tada!
-
-# Default Input/Output links will be made with left-left and right-right
-# connections; in other words, a straight stereo connection.
-# It's possible to manually cross the lines, however!
-# source.right.connect(sink.left)
-# source.left.connect(sink.right)
+