hello ppl. i have tried most of the video editing freewares that are on this website but none seem to work for me. i basically have many avi and other types of video files that i want to remove some video parts from. no adding no nothing. just basic cutting out and have the new edited avi file again. just like it was before just not with the parts i cut. that is basically all i want. is there some simple and easy to use freeware like that?
+ Reply to Thread
Results 1 to 3 of 3
-
-
Avisynth + VirtualDubMod.
AVS file: newvideo.avs
Open in VirtualDubMod, "save as" a new AVI file with "direct stream copy" to retain original compression.Code:clip=AVISource("video.avi") EnsureVBRMP3Sync ( ) clip1=clip.Trim (1,574) clip2=clip.Trim (5470,5914) clip3=clip.Trim (17053,0) clip1 ++ clip2 ++ clip3
You may wish to first use a file like
To note the frame numbers, though you can read them off in Virtual DUB Mod and paste them in via "script editor" and reload with F5.Code:AVISource("video.avi") ShowFrameNumber(x=100,y=100)
Similar Threads
-
Easiest anymation
By jimmyy in forum EditingReplies: 10Last Post: 19th Jul 2012, 16:20 -
Easiest way 5.1 AAC to 5.1 AC3
By satansgutter in forum AudioReplies: 16Last Post: 30th Dec 2011, 23:18 -
Easiest software for compilation, cutting/joining?
By jiopi in forum EditingReplies: 0Last Post: 14th Oct 2010, 13:31 -
Easiest Cutting Program?
By Merkaba188 in forum EditingReplies: 9Last Post: 4th Nov 2009, 22:25 -
AVI to mp4 Freeware and VOB to mp4 Freeware
By saucedmike in forum Newbie / General discussionsReplies: 2Last Post: 1st Jan 2008, 02:44



Quote
Tr