Created
December 20, 2015 09:20
-
-
Save shaposhnikoff/017fe7aaac8ed9a8f19b to your computer and use it in GitHub Desktop.
ffmpeg screenrecord
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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