Advertisement
Guest User

x11grabr and ffmpeg

a guest
May 28th, 2012
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.38 KB | None | 0 0
  1. # x11grabr is from here https://github.com/livibetter/x11grabr
  2.  
  3. # works fine
  4. ./x11grabr -s 1920x1080 -r 25 -bnone | ffmpeg -f rawvideo -pix_fmt bgra -s 1920x1080 -r 25 -i - -y -r 25 test.mp4
  5.  
  6. # seems to work fine but the duration of the mp4 file is wrong
  7. ./x11grabr -s 1920x1080 -r 25 -bnone > tmp
  8. cat tmp | ffmpeg -f rawvideo -pix_fmt bgra -s 1920x1080 -r 25 -i - -y -r 25 test.mp4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement