blaues0cke / PiSleepTalk

I wanted a raspberry pi to record my sleep talk
21 stars 13 forks source link

PiSleepTalk

The idea behind this project was to provide a "should work out of the box" solution to make a Raspberry Pi record what you are talking while sleeping. See our issue tracker to see whats going on. You can find some screeshots at the end of this file.

Feel free to support me if you like this project.

Donate

Feature list

Videos

Here is a list of videos people generated using PiSleepTalk. Feel free to create an issue if you want me to list your video, too.

Installation

To install PiSleepTalk and all its dependencies, just copy and run this shell command. Beware, the installation may (it depends on the version of your Raspberry Pi) up to one day! On the latest Raspberry Pi the installation will take about 2-4 hours.

curl -s -L https://goo.gl/AksVZR | bash

Or if you dont trust google:

curl -s -L https://raw.githubusercontent.com/blaues0cke/PiSleepTalk/master/install.sh | bash

Warning: The install script will overwrite the hostname on your machine and assumes an interface called wlan0 exists. It installs various packages (nginx, samba etc.) but is otherwise limited to /usr/sleeptalk

Microphone configuration

You may configure the gain of your microphone to match your requirements. To do so, just type

sudo alsamixer

and select your soundcard. The you can configure the whole stuff. Once you are done, just hit the ESC key and type

sudo alsactl store

to save the new configuration. Make sure you reboot your Raspberry Pi or at least restart the recording to apply your changes.

File system

All folders that contain record data have to start with record- since the status page only watches folders starting with this prefix.

Workflow

Files are processed in the following folders:

  1. /usr/sleeptalk/records-import put audio files to want to import in the system in this folde using samba. It will processed like it is a recording made from your Raspberry Pi.
  2. /usr/sleeptalk/records-import-instant put audio files to want to import in the system in this folde using samba. It will processed like a recording generated by your Rasberry Pi.
  3. /usr/sleeptalk/records-raw contains all raw audio chunks recorded by record-chunks.sh.
  4. /usr/sleeptalk/records-timestamp contains all audio chunks added with a timestamp by add-timestamp-to-filename.sh.
  5. /usr/sleeptalk/records-amplitude contains all audio chunks added with its amplitude data by add-amplitude-to-filename.sh.
  6. /usr/sleeptalk/records-to-render. contains all data that is required to render a video.
  7. /usr/sleeptalk/records-decrease-volume the volume of all files in this folder is decreased by 50% by process-volume.sh. All processed files are moved back to /usr/sleeptalk/records-to-render.
  8. /usr/sleeptalk/records-increase-volume the volume of all files in this folder is increased by 50% by process-volume.sh. All processed files are moved back to /usr/sleeptalk/records-to-render.
  9. /usr/sleeptalk/records-rendered contains finally rendered videos including their subtitles with reduced noise.
  10. /usr/sleeptalk/records-final contains upload ready videos build by concating multiple rendered records.

Audio detection and rating logic

There are some rules that control the way a recording is generated, basically:

.sleeptalk format

I needed to implement a simple format to transmit the text data from node.js to the bash part of PiSleepTalk. For this reason the following format exists. It just contains the frame count and the corresponding text, like this:

0000|First text at second 0
0015|Follows after 1 second
0060|Appears after 4 seconds from start

Hardware

I am using the following hardware, but I think the most Raspberry Pi models, WiFi sticks, usb-microphones should work. Feel free to click on this link before you buy the stuff, so our non-profit hackspace Toolbox Bodensee e.V. will get a commission.

Actulally, PiSleepTalk generates very nice recording if you use a microphone that is in the professional segment, I switched from a cheap microphone to a more professional one and dont regret it.

Hardware switch and led

PiSleeptalk also supports a hardware switch to enable and disable the recording feature. Make sure you enabled this feature by chaning the button_enabled setting in config.cfg. Wire the buttons cables to the following wiring (Between pin 6 and pin 11):

    ────────────────────────────┐  <= Top right corner of your Raspberry Pi
                                |
                                |
                |────||────|    |
                | 01 || 02 |    |
                |────||────|    |
                |────||────|    |
                | 03 || 04 |    |
                |────||────|    |
                |────||────|    |
                | 05 || 06 | <= Switch -
                |────||────|    |
                |────||────|    |
                | 07 || 08 |    |
                |────||────|    |
                |────||────|    |
                | 09 || 10 |    |
                |────||────|    |
                |────||────|    |
    Switch + => | 11 || 12 | <= Force switch +
                |────||────|    |
                |────||────|    |
   Rec led + => | 13 || 14 | <= Rec led -
                |────||────|    |
                |────||────|    |
    On led + => | 15 || 16 | <= Led switch +
                |────||────|    |
                |────||────|    |
                | 17 || 18 |    |
                |────||────|    |
                |────||────|    |
                | 19 || 20 | <= Force switch -
                |────||────|    |
                |────||────|    |
                | 21 || 22 |    |
                |────||────|    |
                |────||────|    |
                | 23 || 24 |    |
                |────||────|    |
                |────||────|    |
    On led - => | 25 || 26 |    |
                |────||────|    |
                |────||────|    |
                | 27 || 28 |    |
                |────||────|    |
                |────||────|    |
                | 29 || 30 | <= Led switch -
                |────||────|    |
                                |
                                |
                                |

So at the end, your switch should sit between pin 6 and pin 11. To enable the led, just place it between pin 13 and 14. Don't forget to enable the led_enabled settings.

Importing audio

You may want to import audio you recored with third party deviced like an iPhone. To do so, just put your files in the /usr/sleeptalk/records-import or /usr/sleeptalk/records-import-instant folder and make sure, you file name contains something like a number to make sure the first file (if you have multiple chunks) is processed first. The importer script (import-audio.sh) will also add a seed at the end of the file name to make definitely sure you won't overwrite any existing file.

The importer will try to convert any audio file format to wav. If it fails, your file will be just deleted. After the import, the file is treated like a file that was recorded by the Raspberry Pi itself. Read the "Workflow" section to get an idea what is done with your file.

Beware: The system will wait a configured amount of time (default: {{500 seconds}}) until the import folder is checked after it was changed. You can force the import using the "Force import" button in the frontend.

Videos

Videos are rendered with 15 FPS. So one second is equivalent to 15 frames.

Samba

The configuration for the samba server is stored here: /etc/samba/smb.conf. Type sudo nano /etc/samba/smb.conf to edit the file. By default all folders documented in the "File system" area are a separate share. You may not touch them, but they are there for debug reasons.

To restart the samba server, type: sudo /etc/init.d/samba restart

Thanks to

Experience

I used this for my own a few days now in kinda production environment. Things I learned:

License

This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.

References

Bootstrap

node.js

Wavesurfer

Screenshots

Pictures

Here you can see my own installation: