voidrice/.scripts/video

24 lines
571 B
Text
Raw Normal View History

2018-09-08 22:43:47 -04:00
#!/bin/sh
2018-04-10 23:08:43 -07:00
# This script records video.
# It also names files smartly to prevent overwrites.
2018-04-10 23:08:43 -07:00
# Picks a file name for the output file based on availability:
2018-09-08 22:43:47 -04:00
while [ -f "$HOME/video$n.mkv" ]
do
n=$((n+1))
done
filename="$HOME/video$n.mkv"
2018-04-10 23:08:43 -07:00
# The actual ffmpeg command:
ffmpeg \
-f x11grab \
2018-09-08 22:43:47 -04:00
-s "$(xdpyinfo | grep dimensions | awk '{print $2;}')" \
-i :0.0 \
2018-09-08 22:43:47 -04:00
-c:v libx264 -qp 0 -r 30 "$filename" &
2018-09-08 22:43:47 -04:00
# PID outputted for use by the killrecording script
echo $! > ~/.recordingpid
# Updating i3blocks recording icon:
2018-08-04 13:49:54 -04:00
echo ⏺️ > ~/.recordingicon && pkill -RTMIN+9 i3blocks