2018-04-11 06:08:43 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# 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-06-16 01:48:42 +00:00
|
|
|
while [[ -f $HOME/audio$n.flac ]]
|
2018-04-11 06:08:43 +00:00
|
|
|
do
|
|
|
|
n=$((n+1))
|
|
|
|
done
|
2018-06-16 01:48:42 +00:00
|
|
|
filename="$HOME/audio$n.flac"
|
2018-04-11 06:08:43 +00:00
|
|
|
|
|
|
|
# For Pulseaudio with ALSA:
|
|
|
|
record_pulse() { \
|
|
|
|
ffmpeg \
|
|
|
|
-f alsa -i default \
|
|
|
|
-c:a flac \
|
|
|
|
$filename ;}
|
|
|
|
|
|
|
|
# For ALSA:
|
|
|
|
record_alsa() { \
|
|
|
|
ffmpeg -y \
|
|
|
|
-f alsa -ar 44100 -i hw:1 \
|
|
|
|
$filename ;}
|
|
|
|
|
2018-06-16 01:48:42 +00:00
|
|
|
if [[ $(pgrep -x pulseaudio) ]]; then record_pulse; else record_alsa; fi &
|
|
|
|
# Updating i3blocks recording icon:
|
|
|
|
echo 🎙️ > ~/.scripts/.recording && pkill -RTMIN+9 i3blocks
|