Skip to content

Instantly share code, notes, and snippets.

@shaposhnikoff
Created December 20, 2015 09:20
Show Gist options
  • Select an option

  • Save shaposhnikoff/017fe7aaac8ed9a8f19b to your computer and use it in GitHub Desktop.

Select an option

Save shaposhnikoff/017fe7aaac8ed9a8f19b to your computer and use it in GitHub Desktop.
ffmpeg screenrecord
#!/bin/bash
DATE=`date +%Y-%m-%d_%Hh%Mm`
ffmpeg -f alsa -i pulse -f x11grab -acodec pcm_s16le -r 24 -s 1920*1080 -i :0.0+1366,0 -vcodec libx264 -preset ultrafast -threads 4 -y /home/max/video/out`date +%Y-%m-%d_%Hh%Mm`.mkv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment