blob: 4bfab6281eceb69da25617a1ff9e7f00e8e06a54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
set -e
recordingPATH=~/media/screenrecords/
case $1 in
start)
ffmpeg -video_size 1920x1080 -framerate 60 -f x11grab -i :0.0+0,0 ${recordingPATH}screenrecording_$(($(ls $recordingPATH | wc -l)+1)).mp4 ;;
stop)
pkill ffmpeg ;;
esac
|