aboutsummaryrefslogtreecommitdiff
path: root/scripts/recording/screenrecord.sh
blob: bc5d6a3bf5fc902f84055d4aedeabb6b1ef78054 (plain) (blame)
1
2
3
4
5
6
7
#!/usr/bin/env bash

prefix=${2:-"video"};

outfile=${1:-"$HOME/Pictures/recordings/$prefix-screen-$(date -Iminutes).mp4"};

ffmpeg -f x11grab -s 1920x1080 -i :0.0 -f alsa -i hw:0,0 $outfile;