aboutsummaryrefslogtreecommitdiff
path: root/ffmpeg-screenrecord
blob: bef2167ac87e55a840486e7d9570e05fe7e38e6a (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