Search found 1 match

by shakana
Thu Nov 22, 2012 2:24 pm
Forum: Avisynth Filters
Topic: Blending Frame
Replies: 1
Views: 16520

Blending Frame

I'm looking for the best way to blend one frame at a time. Below is what I was thinking: source=avisource("fullclip.avi") # select frames to blend frame1 = trim(source, frame, length=1) frame2 = trim(source, frame+1, length=1) frame1 = Overlay(frame1, frame2, mode="blend", opacity=0.5) #blend frames...