Advertisement
clockworkpc

FFmpeg Video Only

Jul 8th, 2011
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.49 KB | None | 0 0
  1. #!/bin/bash
  2. #Filename:screencast.sh
  3. #Released under a GPLv3 Licence by Clockwork PC
  4.  
  5. rm -f ~/Videos/Screencasts/output.mkv &&
  6.  
  7. ffmpeg -f alsa -ac 2 -i pulse -f x11grab -r 30 -s 1920x1080 -i :0.0 -acodec pcm_s16le -vcodec libx264 -vpre lossless_ultrafast -threads 0 ~/Videos/Screencasts/output.mkv
  8.  
  9. ffmpeg -i ~/Videos/Screencasts/output.mkv -acodec libfaac -ab 128k -ac 2 -vcodec libx264 -vpre slow -crf 22 -threads 0 ~/Videos/Screencasts/screencast_on_$(date +%F_%A_at_%H:%M:%S).mp4
  10.  
  11. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement