voidrice/.scripts/video

24 lines
571 B
Text
Raw Normal View History

2018-09-09 02:43:47 +00:00
#!/bin/sh
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:
2018-09-09 02:43:47 +00:00
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 \
2018-09-09 02:43:47 +00:00
-s "$(xdpyinfo | grep dimensions | awk '{print $2;}')" \
-i :0.0 \
2018-09-09 02:43:47 +00:00
-c:v libx264 -qp 0 -r 30 "$filename" &
2018-09-09 02:43:47 +00:00
# PID outputted for use by the killrecording script
echo $! > ~/.recordingpid
# Updating i3blocks recording icon:
2018-08-04 17:49:54 +00:00
echo ⏺️ > ~/.recordingicon && pkill -RTMIN+9 i3blocks