Created
May 12, 2011 02:33
-
-
Save gilsondev/967823 to your computer and use it in GitHub Desktop.
Comando para gravar a área de trabalho com e sem áudio
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
# 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