snippets/screencast

20 lines
378 B
Plaintext
Raw Permalink Normal View History

2018-12-07 13:08:45 +01:00
#!/bin/bash
timestamp=`date "+%Y%m%d-%H%M%S"`
filename="screencast-$timestamp.mp4"
2021-06-14 16:26:04 +02:00
killall -q redshift-gtk
#pavucontrol &
2018-12-07 13:08:45 +01:00
ffmpeg -f x11grab \
2021-06-14 16:26:04 +02:00
-framerate 60 \
2018-12-07 13:08:45 +01:00
-s $(xdpyinfo | grep dimensions | awk '{print $2}') \
-i :0.0 \
-f pulse -i default \
2021-06-14 16:26:04 +02:00
-r 30 \
-c:v h264 -crf 17 -preset ultrafast -c:a aac \
2018-12-07 13:08:45 +01:00
$filename
2021-06-14 16:26:04 +02:00
redshift-gtk &