2018-09-08 22:43:47 -04:00
|
|
|
#!/bin/sh
|
2018-04-10 23:08:43 -07:00
|
|
|
|
|
|
|
# This script records audio.
|
|
|
|
# It runs an appropriate record script for either ALSA and Pulseaudio.
|
|
|
|
# It also names files smartly to prevent overwrites.
|
|
|
|
|
|
|
|
# Picks a file name for the output file based on availability:
|
2018-09-08 22:43:47 -04:00
|
|
|
while [ -f "$HOME/audio$n.flac" ]
|
2018-04-10 23:08:43 -07:00
|
|
|
do
|
|
|
|
n=$((n+1))
|
|
|
|
done
|
2018-06-15 21:48:42 -04:00
|
|
|
filename="$HOME/audio$n.flac"
|
2018-04-10 23:08:43 -07:00
|
|
|
|
|
|
|
ffmpeg \
|
|
|
|
-f alsa -i default \
|
|
|
|
-c:a flac \
|
2018-09-08 22:43:47 -04:00
|
|
|
"$filename" &
|
2018-04-10 23:08:43 -07:00
|
|
|
|
2018-09-08 22:43:47 -04:00
|
|
|
# PID outputted for use by the killrecording script
|
|
|
|
echo $! > ~/.recordingpid
|
2018-06-15 21:48:42 -04:00
|
|
|
# Updating i3blocks recording icon:
|
2018-08-04 13:49:54 -04:00
|
|
|
echo 🎙️ > ~/.recordingicon && pkill -RTMIN+9 i3blocks
|