ref: 6043d8957e3eadc67f9f36ce388bd769eafe680b
parent: 414d5f89b369c41f5cba76eff341aaba44266bac
author: Jonne Kokkonen <jonne.kokkonen@gmail.com>
date: Sun Jun 20 11:32:50 EDT 2021
Update AUDIOGUIDE.md
--- a/AUDIOGUIDE.md
+++ b/AUDIOGUIDE.md
@@ -44,10 +44,12 @@
Open Terminal and run the commands below to setup the system.
-## First time setup
+-----
-### Install JACK Audio Connection Kit
+#### First time setup
+#### Install JACK Audio Connection Kit
+
The jackd2 package will provide the basic tools that make the audio patching possible.
```
@@ -54,7 +56,7 @@
sudo apt install jackd2
```
-### Add your user to the audio group
+#### Add your user to the audio group
This is required to get real time priority for the JACK process.
@@ -64,8 +66,10 @@
You need to log out completely or reboot for this change to take effect.
-### Find your audio interface ALSA device id
+-----
+#### Find your audio interface ALSA device id
+
Use the ```aplay -l``` command to list the audio devices present in the system.
```
@@ -97,7 +101,7 @@
After these steps have been taken care of, we can try to route some audio.
-## Start JACK server and route audio
+#### Start JACK server and route audio
```
jackd -d alsa -d hw:M8 -r44100 -p512 &
```
@@ -131,7 +135,7 @@
```killall -s SIGINT jackd alsa_out```
-## TL;DR
+#### TL;DR
Run these in Terminal:
```
--
⑨