Skip to content

Commit

Permalink
Ad option to mono or stereo ADC
Browse files Browse the repository at this point in the history
  • Loading branch information
RowdyVoyeur authored Apr 23, 2024
1 parent 0a9adfa commit 2a6141a
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions m8c.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ sleep 2
jack_connect MC101_in:capture_1 system:playback_1
jack_connect MC101_in:capture_2 system:playback_2

# Connect audio of USB Card Microphone to MC101 In (This allows to record audio onto the additional Instrument)
# Connect audio of USB Card Microphone or Audio Card In to MC101 In (This allows to record audio onto the additional Instrument)
jack_connect system:capture_1 MC101_out:playback_1
jack_connect system:capture_1 MC101_out:playback_2
# Comment the following line and uncomment the next one, if your USB Card or Audio Card In has a mono ADC
jack_connect system:capture_2 MC101_out:playback_2
# jack_connect system:capture_1 MC101_out:playback_2

# Start MIDI To Command (Uncomment the line below to start midi-to-command on boot. More info: github.com/RowdyVoyeur/midi-tools)
# sudo python home/patch/midi-tools/midi-to-command/midi2command.py home/patch/midi-tools/midi-to-command/config.cfg -p nanoKONTROL &
Expand All @@ -44,10 +46,11 @@ sleep 2
jack_connect M8_in:capture_1 system:playback_1
jack_connect M8_in:capture_2 system:playback_2

# Connect audio of USB Card Microphone to M8 In (This allows to record audio onto the M8)
# There are 2 system:capture_1 because my USB Card has a mono ADC. Should be changed to capture_1 and capture_2 if stereo ADC
# Connect audio of USB Card Microphone or Audio Card In to M8 In (This allows to record audio onto the M8)
jack_connect system:capture_1 M8_out:playback_1
jack_connect system:capture_1 M8_out:playback_2
# Comment the following line and uncomment the next one, if your USB Card or Audio Card In has a mono ADC
jack_connect system:capture_2 M8_out:playback_2
# jack_connect system:capture_1 M8_out:playback_2

# Start CC to Note (Uncomment the line below to start cc-to-note on boot. More info: github.com/RowdyVoyeur/midi-tools)
# sudo python /home/patch/midi-tools/cc-to-note/main.py --config /home/patch/midi-tools/cc-to-note/config.json &
Expand Down

0 comments on commit 2a6141a

Please sign in to comment.