Skip to content

betodealmeida/jellyjampreserve

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 

Repository files navigation

JellyJamPreserve

JellyJamPreserve is a Raspberry Pi project that uses jack_capture to record audio on the toggle of a switch. It continuously records audio into a 5 minute circular buffer, and when the switch is turned on the buffer is dumped to a file and it starts recording audio to the file until the switch is turned off. This way you can preserve any cool improvisations by recording sounds from the past!

In other words, if you turn the switch on at 1:05 pm and turn it off at 1:30 pm you will have an audio file with a recording from 1:00 pm to 1:30 pm. If you come up with an amazing riff while playing your guitar just turn on the switch and keep playing.

The JellyJamPreserve

Requirements

  • A Raspberry Pi. Any Raspberry Pi should work. I use a Pi 1 Model B because I had a few of them unused at home.
  • An SD card. The files are recorded as WAV, and take approximately 20 MB per minute. I use a 32 GB SD card.
  • A USB sound card. We need a way to capture sound. Any cheap USB soundcard should work, just make sure it has a stereo input. I use this one.
  • A WiFi card. This will allow you to get the files with the recordings from the Pi. Remember that some models of the Pi already have WiFi (the 3 and the Zero W, as of this writing).
  • A switch, to start/stop recording.
  • An LED, to indicate when the JellyJamPreserve is recording. Because LEDs are cool.

Manual installation

Install Raspbian

Install Raspberry Pi OS and make sure you can log into the Raspberry Pi. The instructions below are for Debian version: 11 (bullseye).

Expand filesystem

$ sudo raspi-config
-> 7 Advanced Options [enter]
-> A1 Expand Filesystem [enter]

Change default sound card

Create the file /etc/modprobe.d/alsa-base.conf and add:

# This sets the index value of the cards but doesn't reorder.
options snd_usb_audio index=0   
options snd_bcm2835 index=1

# Does the reordering.
options snd slots=snd_usb_audio,snd_bcm2835

You can verify the order using the aplay command. After a reboot the USB card should appear as card 0:

$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: Device [C-Media USB Audio Device], device 0: USB Audio [USB Audio]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
...

Read more here.

Install jackd and jack_capture

$ sudo apt-get update
$ sudo apt-get install jackd jack-capture tmux

Log out and log in again.

Create /dev/gpiomem

$ sudo apt-get install rpi-update
$ sudo rpi-update

Install Python and dependencies

$ sudo apt-get install python3 python3-pip
$ sudo pip3 install python-osc
$ sudo pip3 install RPi.GPIO

Install the JellyJamPreserve script

$ git clone https://github.com/robertodealmeida/jellyjampreserve.git

And to have it start at boot:

$ crontab -e

By adding this line:

@reboot /home/pi/jellyjampreserve/start.sh >> /home/pi/jellyjampreserve.log 2>&1

The script will start the Jack daemon, jack_capture, and a Python script that listens for events from the switch and starts/stops jack_capture.

Wire it up

  1. The LED is connected to GPIO 3 (pin 5) and to ground with a 47R resistor.
  2. GPIO 2 (pin 3) has a 10K pull-up resistor, and is connected to the ground through the switch.

Fritzing diagram

Here's how I did it, slightly different from the Fritzing diagram:

Connecting the switch and the LED

  • White wire: LED anode to GPIO 3 (pin 5)
  • Black wire: switch to ground (pin 6)
  • Yellow wire: switch to GPIO 2 (pin 3)
  • Red wire: 10K resistor to 5V (pin 4)

Getting the files

There are many ways to get the recordings from the Pi. You can have Dropbox or Syncthing running in the Pi to automatically synchronize the files with another machine. I prefer to just use scp in Linux (in Windows you can use WinSCP).

About

JellyJamPreserve is a Raspberry Pi project using Jack Timemachine (http://plugin.org.uk/timemachine/) to record audio in a studio.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published