license: GPL
ffavisynth - A plugin which lets you directly use ffdshow image processing filters from AviSynth scripts.
video: ffdshow
(clip, string "preset", string "options")
audio: ffdshowAudio
(clip, string "preset", string "options")
preset - existing ffdshow preset to be used
options - array of "name=value" pairs separated by commas
Both parameters are optional. If preset is not specified, a new preset called ffavisynth is created temporarly. Options override preset settings. List of allowed options names and values should be documented once, but for now look at registry key HKEY_CURRENT_USER\Software\GNU\ffdshow\default to get the list.
Examples:
Use the current ffdshow settings:
AviSource("E:\testi.avi") ffdshow("default")
Or create a new preset by hitting the new button (under 'Image settings'), rename it by clicking twice on "default 1" or what the new one is named and change its settings to your liking, then use
AviSource("E:\testi.avi") ffdshow("<name of your new preset>")
Try to append this:
AviSource("E:\testi.avi")
ffdshow(options="isLevels=1, levelsMode=0, levelsGamma=1500")
to your script. If it would work, the effect should be very visible.
Another for is:
AviSource("E:\testi.avi") # denoise is a created preset: ffdshow(preset="denoise")
and you can combine both
AviSource("E:\testi.avi") ffdshow(preset="denoise", options="isLevels=1, levelsMode=0, levelsGamma=1500")
which will load preset, modify given values and process video.
Input and output colorspaces are equal. Even if ffdshow image processing filter chain would produce image with different colorspace, it will be converted to match that on input.
$Date: 2005/10/03 16:31:31 $