aboutsummaryrefslogtreecommitdiff
path: root/ffmpeg-screenrecord
blob: cdca2dc61705b0d094841da2c9b0d8389aa60835 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

# One-line screen record with ffmpeg (I always forget the command)
# Requires: ffmpeg

outfile=${1:-output.mkv}

ffmpeg -f x11grab -i :0 -f pulse -i default $outfile

Generated with cgit - Back to sebastiano.tronto.net