Dear specialists,
I would like to edit a video and copy a small area inside a frame to another area. For every frame.
How could this be done effectively with avisynth?
Example picture attached
[Attachment 86917 - Click to enlarge]
The marked area below the red logo should cover the logo completely in every frame.
20 seconds example movie attached also
Scripting help very appreciated...
Thanks.
+ Reply to Thread
Results 1 to 5 of 5
-
-
Use Crop() to make a copy of the blue area. Then Overlay() that clip over the logo.
Code:patch = Crop(x, y, width, height) Overlay(last, patch, x=?, y=?)
-
Ha, so easy. Thanks a lot.
Worked for me
Code:patch = Crop(84, 108, 92, 62) Overlay(last, patch, x=84, y=46)
-
Simply:
DoomDelogo(84, 46, 92, 62) -
Yes, inpainting works very well when the area around the logo is flatly colored.
Similar Threads
-
comparting frame to frame in edius between direct source and avisynth
By marcorocchini in forum Newbie / General discussionsReplies: 1Last Post: 28th Mar 2025, 01:26 -
white full frame flicker every other frame, Mad VR 205 ok, 206 not ok
By Nicholas Steel in forum Software PlayingReplies: 1Last Post: 7th Aug 2024, 14:36 -
Frame area
By coolgit in forum RestorationReplies: 2Last Post: 13th Jan 2023, 08:30 -
Mp4Box - Output is generated without frame Width, frame height & frame rate
By Saptarshi in forum Newbie / General discussionsReplies: 0Last Post: 25th Nov 2022, 08:27 -
Partial frame stab() as basis for whole frame? (Avisynth)
By lordsmurf in forum RestorationReplies: 28Last Post: 11th Sep 2020, 10:36