Skip to content

Instantly share code, notes, and snippets.

@bboa

bboa/rec.sh Secret

Last active August 16, 2016 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bboa/e2cfcf48e0034645cda8a5421a87cab5 to your computer and use it in GitHub Desktop.
Save bboa/e2cfcf48e0034645cda8a5421a87cab5 to your computer and use it in GitHub Desktop.
AudioNote Shell script
#!/bin/sh
DIR=`xdg-user-dir MUSIC`
if [ -z $DIR ]
then
DIR=~/AudioNotes
else
DIR="$DIR/AudioNotes"
fi
NOW=`date +%F_%T`
if pgrep arecord
then
pkill arecord
notify-send -i media-record Аудиозаметка 'Запись завершена'
sleep 2 && pkill notify-osd &
exit
fi
[ ! -d "$DIR" ] && mkdir -p "$DIR"
amixer -c 0 set 'Mic Boost',0 3
arecord -f dat -d 600 -D hw:0,0 | lame --preset voice - "$DIR/$NOW.mp3" &
notify-send -i media-record Аудиозаметка $NOW
sleep 2 && pkill notify-osd &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment