5 lines
171 B
Text
5 lines
171 B
Text
|
#!/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
|