Created
August 30, 2012 02:35
-
-
Save reedlaw/3521817 to your computer and use it in GitHub Desktop.
Record Screencast in Ubuntu
This file contains 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
sleep 3; avconv -f x11grab -r 25 -s 1280x720 -i :0.0+0,50 -f alsa -i hw:2,0 -vcodec libx264 -preset ultrafast -acodec libmp3lame -threads 0 output.mkv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a single line command you can run in Terminal to record your screen with audio. You need package
avconv
. Changehw:2,0
to whatever audio device you use to record (or use default for the built-in mic). Audacity can help you test out recording. You can change the screen size and offset with the-s
and-i
flags.