Skip to content

Instantly share code, notes, and snippets.

@gilsondev
Created May 12, 2011 02:33
Show Gist options
  • Save gilsondev/967823 to your computer and use it in GitHub Desktop.
Save gilsondev/967823 to your computer and use it in GitHub Desktop.
Comando para gravar a área de trabalho com e sem áudio
# Sem áudio
ffmpeg -f x11grab -r 30 -s 1366x768 -i :0+0,0 -vcodec libx264 -vpre lossless_ultrafast -threads 0 /tmp/tmp9sfmn4.mkv
# Com áudio
ffmpeg -f alsa -i pulse -f x11grab -r 30 -s 1366x768 -i :0+0,0 -ac 2 -acodec flac -ab 128k -vcodec libx264 -vpre lossless_ultrafast -threads 0 /tmp/tmprSIsES.mkv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment