Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. # 1.install gource using HomeBrew
  2. $ brew install gource
  3.  
  4. # 2.install avconv
  5. git clone git://git.libav.org/libav.git
  6. cd libav
  7. # it will take 3-5 minutes to complie, be patient.
  8. ./configure --disable-yasm
  9. make && make install
  10.  
  11. # 3.generate a video for you repo.
  12. $ cd your_repo_dir
  13. $ gource \
  14. -s .06 \
  15. -1280x720 \
  16. --auto-skip-seconds .1 \
  17. --multi-sampling \
  18. --stop-at-end \
  19. --key \
  20. --highlight-users \
  21. --hide mouse,progress,filenames \
  22. --file-idle-time 0 \
  23. --max-files 0 \
  24. --background-colour 000000 \
  25. --font-size 22 \
  26. --title "The COBRA Toolbox 2012 - 2017" \
  27. --output-ppm-stream - \
  28. --output-framerate 30 \
  29. --dir-name-depth 9999 \
  30. | avconv -y -r 30 -f image2pipe -vcodec ppm -i - -b 65536K movie.mp4
  31.  
  32. # It's Done! Just share the video with your teammates, Have fun!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement