Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gource on Windows

We're having problems on windows creating a video file from gource (gource). We can run gource and watch the video live but don't seem to be able to get any useful physical output.

like image 878
Chris Meek Avatar asked Nov 19 '09 12:11

Chris Meek


People also ask

What is gource?

Gource is an amazing and flexible tool that can be used to display activity from your repositories using a video visualization that people love. Gource can be redistributed and modified under the terms of the GNU General Public License (version 3 or later).


1 Answers

gource -1024x768 --stop-position 1.0 --highlight-all-users --hide-filenames --seconds-per-day 5 --output-framerate 60 --output-ppm-stream output.ppm  ffmpeg -y -r 60 -f image2pipe -vcodec ppm -i output.ppm  -vcodec wmv1 -r 60 -qscale 0 out.wmv 

The key was the image2pipe format which seems to extract all the frames from the ppm rather than treating it as an individual image.

like image 83
Chris Meek Avatar answered Sep 23 '22 07:09

Chris Meek