2018-01-22 01:29:48 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-04-11 06:08:43 +00:00
|
|
|
# This script records video.
|
|
|
|
# It also names files smartly to prevent overwrites.
|
2018-01-22 01:29:48 +00:00
|
|
|
|
2018-04-11 06:08:43 +00:00
|
|
|
# Picks a file name for the output file based on availability:
|
2018-01-22 01:29:48 +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:
|
2018-01-22 01:29:48 +00:00
|
|
|
ffmpeg \
|
|
|
|
-f x11grab \
|
|
|
|
-s $(xdpyinfo | grep dimensions | awk '{print $2;}') \
|
|
|
|
-i :0.0 \
|
2018-06-16 01:48:42 +00:00
|
|
|
-c:v libx264 -qp 0 -r 30 $filename &
|
|
|
|
|
|
|
|
# Updating i3blocks recording icon:
|
|
|
|
echo ⏺️ > ~/.scripts/.recording && pkill -RTMIN+9 i3blocks
|