Advertisement
Guest User

Untitled

a guest
May 23rd, 2015
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. #!/bin/sh
  2. resolution=1360x720
  3. seconds_per_day=0.01
  4. auto_skip_seconds=0.1
  5. elasticity=0.05
  6. fps=25
  7. bitrate=4000K
  8. extension=webm
  9.  
  10. input=8bit.gource
  11. output=8bit.$extension
  12.  
  13. xvfb-run -a -s '-screen 0 1360x720x16' gource \
  14. --log-format custom \
  15. --stop-at-end \
  16. --seconds-per-day $seconds_per_day \
  17. --auto-skip-seconds $auto_skip_seconds \
  18. --elasticity $elasticity \
  19. -b 000000 --hide filenames,dirnames,progress,mouse --user-friction .2 \
  20. --background-image Wiki-background.png --logo Wiki-wordmark.png \
  21. -$resolution \
  22. --output-ppm-stream - \
  23. --output-framerate $fps \
  24. $input | avconv -y -r $fps -f image2pipe -vcodec ppm -i - -b $bitrate $output
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement