voidrice/.scripts/video

19 lines
394 B
Text
Raw Normal View History

#!/bin/bash
2018-04-11 06:08:43 +00:00
# This script records video.
# It also names files smartly to prevent overwrites.
2018-04-11 06:08:43 +00:00
# Picks a file name for the output file based on availability:
while [[ -f $HOME/video$n.mkv ]]
do
n=$((n+1))
done
filename="$HOME/video$n.mkv"
2018-04-11 06:08:43 +00:00
# The actual ffmpeg command:
ffmpeg \
-f x11grab \
-s $(xdpyinfo | grep dimensions | awk '{print $2;}') \
-i :0.0 \
-c:v libx264 -qp 0 -r 30 $filename