From 1ce9e196f7c4b76da9a5cf3c789fe6ff2cada2e2 Mon Sep 17 00:00:00 2001 From: Peter Schlaile Date: Sun, 5 Feb 2006 19:12:25 +0000 Subject: Adds support for frameserver rendering to blender. This is done by integrating a mini-webserver (around 300 lines of code) into blender. Using the VFAPI-plugin in contrib/windows it enables blender to directly feed its output into TMPGEnc, a commercial high quality MPEG-Encoder. Since it is a mini-webserver, you can probably easily use it for other interfacing purposes. --- source/blender/blenkernel/SConscript | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender/blenkernel/SConscript') diff --git a/source/blender/blenkernel/SConscript b/source/blender/blenkernel/SConscript index aaee2409d89..a5128a33c3e 100644 --- a/source/blender/blenkernel/SConscript +++ b/source/blender/blenkernel/SConscript @@ -20,6 +20,9 @@ if env['WITH_BF_INTERNATIONAL'] == 1: if env['WITH_BF_OPENEXR'] == 1: defs += ' WITH_OPENEXR' +if env['WITH_BF_FFMPEG'] == 1: + defs += ' WITH_FFMPEG' + if env['WITH_BF_QUICKTIME'] == 1: defs += ' WITH_QUICKTIME' incs += ' ' + env['BF_QUICKTIME_INC'] -- cgit v1.2.3