Author Archives: bruno

Abridged git repository history

It is sometimes useful to have a repository for a project that shows only the main points in history. It is possible to start from git repository with full history and create such an abridged history in a separate branch. You can do this efficiently in git by reusing the original tree objects. This post will do a walkthrough for the Mediawiki repository.
Continue reading

Link

The x264 encoding guide gives a nice explanation of the different options for H.264 encoding. Normally:

ffmpeg -i in.avi -strict experimental -crf 23 -preset medium out.m4v

Where you can deviate from the above defaults:

-crf [18-28]
perceived output quality (lower crf is better quality)
-preset [ultrafast,superfast,veryfast,faster,fast,medium,slow,slower,veryslow]
compression effort (slower preset is better compression)