4 lines
171 B
Bash
Executable file
4 lines
171 B
Bash
Executable file
#!/bin/bash
|
|
date="$(date +%s)"
|
|
ffmpeg -loglevel quiet -f alsa -i default:CARD=Device -c:a libvorbis -b:a 96K /home/alarm/grabacion-${date}.ogg &
|
|
echo $! > /tmp/grabar.pid
|