I currently have:
I am trying to just crop 4 pixels off of the bottom of frame 3508 and then resize it back to fix with the same frame size as the rest of the video. This frame has some green garbage at the bottom and FreezeFrame won't work because it differs to much from the frames around it.Code:MPEG2Source("C:\Desktop\ep1.d2v", cpu2="ooooxx") TFM() TDecimate() daa() ColorYUV(levels="TV->PC") Crop(6, 0, -10, -2) FreezeFrame(20876,20876,20877) FreezeFrame(33158,33158,33159) Spline36Resize(720,480)
I tried ApplyRange, but don't think that will work with cropping, I thought maybe using trim but couldn't get it work properly.
+ Reply to Thread
Results 1 to 3 of 3
-
-
You can use Trim():
You could also use ReplaceFramesSimple():Code:part1=Trim(0,3507) part2=Trim(3508,3508).Crop(0,0,-0,-4).Spline36Resize(width,height) part3=Trim(3509,0) part1++part2++part3
Or you can try replacing the particular frame with motion interpolated between the frame before and the frame after:Code:patch=last..Crop(0,0,-0,-4).Spline36Resize(width,height) ReplaceFramesSimple(last, patch, Mappings="[3508 3508]")
You can find that filter somewhere in these forums.Code:ReplaceFramesMC(3508, 1)
https://forum.videohelp.com/threads/352741-Frame-interpolation?p=2226119&viewfull=1#post2226119
Similar Threads
-
A single .m4v file to a single DVD-Video disk?
By Hamstor in forum Authoring (DVD)Replies: 7Last Post: 25th Sep 2015, 15:37 -
Superimpose video frames to single still frame
By BobAchgill in forum Video ConversionReplies: 6Last Post: 19th Nov 2014, 17:01 -
Batch create single frame videos
By moosehunter in forum Newbie / General discussionsReplies: 4Last Post: 6th Mar 2013, 23:14 -
Screen capture black frame single images.
By Innomen in forum Newbie / General discussionsReplies: 0Last Post: 30th Jun 2012, 12:30 -
How to calculate single frame duration
By 8day in forum Newbie / General discussionsReplies: 4Last Post: 5th Dec 2010, 11:49



Quote