config

My configuration files and custom scripts.
git clone https://git.tronto.net/config
Download | Log | Files | Refs

ffmpeg-screenrecord (179B)


      1 #!/bin/sh
      2 
      3 # One-line screen record with ffmpeg (I always forget the command)
      4 # Requires: ffmpeg
      5 
      6 outfile=${1:-output.mkv}
      7 
      8 ffmpeg -f x11grab -i :0 -f pulse -i default "$outfile"