Archive
PiTiVi 0.13.3 Released
The PiTiVi team have recently announced the release of version 0.13.3 of the popular open source source non-linear video editing tool. PiTiVi is built with Python on top of the GStreamer framework.
- Fix Rendering Failures
- UI beautifications
- Switch to themeable ruler
- Speed optimisations
- Show the project name in the window title
FFmpeg Watermark.c Alpha Channel Patch
Finally, something actually useful on this blog……
This patch means watermark.c now obeys the alpha channel in a PNG file. The -m option is the mode, this must be 2 for alpha blending. The watermark image is applied to the input video and then scaled with the input video to the output video’s dimensions. So best to make an image the same dimensions as the input video, otherwise you’ll get horrible scaling effects.
Usage:
ffmpeg … -vhook ‘/usr/local/lib/vhook/watermark.so -m 2 path/to/image.png’ …
(replace /usr/local/lib/vhook with wherever your watermark.so is.)
Patch is available here – watermark.patch
(Maybe see links below for files on Github instead)
Example screen grab: View image
We’ve also posted back to the FFmpeg Devel mailing list.
Actual credit for this patch goes to my colleague Tim MacFarlane - http://refractalize.blogspot.com/
Tim has also now added the files to Github:
Just the patch here.
The whole of watermark.c with patch applied here.