Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. Domains: forum.doom9.org / forum.doom9.net / forum.doom9.se |
|
|
#10 | Link |
|
Registered User
Join Date: Apr 2005
Posts: 213
|
No essential updates at the moment. In the meanwhile, if you want to use the layer function for each filter, you can do something like this: Create two scripts with the following content and copy them into the template directory (may be in a subdirectory called "Layer").
"LayerBegin.avs": Code:
base_clip = last Code:
# ==============================================================================
# http://avisynth.org/mediawiki/Layer
# ==============================================================================
op = "add"
level = 256
threshold = 255
use_chroma = True
# ==============================================================================
Import("lib\FritzPhoto\FritzPhoto.avs")
base_clip.isYV12() <> isYV12() ? Eval("""
base_clip = isYV12() ? base_clip.RGB32ToYV12() : base_clip.YV12toRGB32()
""") : Eval("""
NOP()
""")
base_clip = base_clip.isYV12() ? base_clip.ConvertToYUY2() : base_clip
last = isYV12() ? ConvertToYUY2() : last
Layer(base_clip.Crop(0, 0, last.Width, last.Height), last, op=op, level=level, threshold=threshold, use_chroma=use_chroma)
isYUY2() ? ConvertToYV12() : last
Last edited by Archimedes; 11th March 2010 at 13:54. |
|
|
|
| Thread Tools | Search this Thread |
| Display Modes | |
|
|