Oxymoron? Maybe. I'm the least qualified to say.
I have one completely processed video with several filters, but there are some parts that require a different filter [rainbowing (yes PDR, you guessed it.)]
I'm wondering what the most intuitive course of action is to fix those rainbowed parts that need some attention.
Should I process the entire video again with the extra filter and trim the parts of the first filtered video I'm keeping and the parts of the second filtered video I'm keeping, and then add all the clips up at the end?
I've found this to be tedious and annoying as I have to browse with Virtualdub and input the frame ranges on Trim which I sometimes mistype and later end up spending 20 minutes debugging after the project's finished.
I heard there was another command called "replaceframes" or something but would it really be more intuitive than trim?
Here's a rough example of what my script looks like:
a=avisource("C:\filteredvideo.avi")
b=avisource("C:\derainbowed.avi")
c=a.trim(0,1509)
d=b.trim(1510,3551)
e=a.trim(3552,3788)
f=b.trim(3789,4600)
g=a.trim(4601,5555)
...etc
c+d+e+f+g
And this takes forever.
+ Reply to Thread
Results 1 to 6 of 6
-
-
stickboy's remapframes, replaceframes or replaceframessimple , or clipclop
http://avisynth.org/stickboy/ -
-
# Equivalent script in ClipClop().
a=avisource("C:\filteredvideo.avi")
b=avisource("C:\derainbowed.avi")
SCMD="
1 1510,3551
1 3789,4600
"
ClipClop(a,b,scmd=SCMD)
# ClipClop() :- http://forum.doom9.org/showthread.php?t=162266
# Prune(), May be of interest too: http://forum.doom9.org/showthread.php?t=162446 -
If you use Vdubmod, it has a script editor. One feature is you can paste in the current frame using Control-P.
Or using the powerful Avisynth editor AvsP, use F11 to do the same.
Several ways to simplify that.
Code:a=avisource("C:\filteredvideo.avi") b=avisource("C:\derainbowed.avi") a.trim(0,1509) ++\ b.trim(1510,3551) ++\ a.trim(3552,3788) ++\ b.trim(3789,4600) ++\ a.trim(4601,5555)
Code:a=avisource("C:\filteredvideo.avi") b=avisource("C:\derainbowed.avi") ReplaceFramesSimple(a, b, mappings= \ "[1510 3551] [3789 4600]")
-
Some versions of VDMod insert the wrong frame numbers (out by 1, in ranges, not single frames) ,
VDMod 1.5.10.3 build 2550, is OK.
CTRL P, Insert position
CTRL R, Insert Range
CTRL T, Insert Trim with Range
CTRL I, Insert Frameset As Trims
CTRL SHIFT ALT C, Comment selected lines
CTRL SHIFT ALT U, Uncomment selected lines
Most useful CTRL I, edit entire clip, CTRL I inserts all trims.
Similar Threads
-
Avisynth audio editing
By Mephesto in forum Newbie / General discussionsReplies: 10Last Post: 20th Apr 2012, 00:35 -
Video Editing Software: mkv, h264 & DTS Editing?
By techdls in forum EditingReplies: 8Last Post: 28th May 2011, 01:29 -
Software that export editing operation as avisynth script
By Nykoo in forum EditingReplies: 4Last Post: 3rd May 2009, 13:12 -
Avisynth editing
By jwfc in forum Newbie / General discussionsReplies: 1Last Post: 17th May 2008, 16:52 -
Lossless editing of .m2t (MPEG-2 TS) in Avisynth
By Tigon in forum Camcorders (DV/HDV/AVCHD/HD)Replies: 2Last Post: 8th May 2007, 08:23