dark_jedi said:That looks very nice Ady,can you please tell me how you did that split screen comparison,this could come in very handy for me in my projects.
Thanks
It is also very easy to do in avisynth, something like
split_org=last
(filters goes here)
split_filter=last
crop(split_org,0,0,320,352)
split_org=last
crop(split_filter,320,0,320,352)
split_filter=last
stackhorizontal(split_org,split_filter)
(For a 640*352 clip)