diff options
Diffstat (limited to 'xrec')
-rwxr-xr-x | xrec | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,13 +7,13 @@ recordingPATH=~/media/screenrecords/ case $1 in start) - dunstify -t 2000 -i /dev/null " Recording Starts In 3 Seconds" + dunstify -t 3000 -i /dev/null " Recording Starts In 3 Seconds" sleep 3 - ffmpeg -video_size 1920x1080 -framerate 60 -f x11grab -i :0.0+0,0 ${recordingPATH}screenrecording_$(($(ls $recordingPATH | wc -l)+1)).mp4 ;; + ffmpeg -video_size 1920x1080 -framerate 60 -f x11grab -i :0.0+0,0 -crf 16 ${recordingPATH}screenrecording_$(($(ls $recordingPATH | wc -l)+1)).mp4 ;; stop) pkill ffmpeg - dunstify -t 2000 -i /dev/null " Recording Finished" + dunstify -t 3000 -i /dev/null " Recording Finished" ;; esac |