voidrice/.scripts/audio

23 lines
543 B
Text
Raw Normal View History

2018-09-09 02:43:47 +00:00
#!/bin/sh
2018-04-11 06:08:43 +00: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-09 02:43:47 +00:00
while [ -f "$HOME/audio$n.flac" ]
2018-04-11 06:08:43 +00:00
do
n=$((n+1))
done
filename="$HOME/audio$n.flac"
2018-04-11 06:08:43 +00:00
ffmpeg \
-f alsa -i default \
-c:a flac \
2018-09-09 02:43:47 +00:00
"$filename" &
2018-04-11 06:08:43 +00:00
2018-09-09 02:43:47 +00:00
# PID outputted for use by the killrecording script
echo $! > ~/.recordingpid
# Updating i3blocks recording icon:
2018-08-04 17:49:54 +00:00
echo 🎙️ > ~/.recordingicon && pkill -RTMIN+9 i3blocks