Hi
I need a filter which can record frame number whenever a key is pressed.
Do we something like this is VDub or AVISYNTH ? If not, then how can I make a vdub filter/ avisynth script ?
thnaks
+ Reply to Thread
Results 1 to 5 of 5
-
-
If you just want a list of frame numbers, in AvsP you can set bookmarks with a keypress (^B), and use a macro to save the resulting list of frames to a text file:
Code:filename = avsp.GetSaveFilename(title='Save bookmarks to text file') f = open(filename, 'w') for bm in avsp.GetBookmarkList(): f.write(str(bm)+'\n') f.close()
-
thanks for the quick reply !
can you suggest a modification .... something that records the frame number as well as the key that has been pressed -
Originally Posted by blaze01
Anyway, if you want to ask the author, post in the AvsP thread at Doom9.
Similar Threads
-
Removing Logos using DeLogo vdub filter
By Matt D in forum EditingReplies: 67Last Post: 6th Apr 2016, 10:26 -
Which is the best VDub filter to fix this video/image?
By zanos in forum RestorationReplies: 7Last Post: 12th Feb 2009, 16:37 -
Applying a filter without recompressing in VDub
By chrisr34000 in forum EditingReplies: 5Last Post: 25th Jan 2008, 17:42 -
ACDsee Filter&VDUB
By mv0930 in forum Newbie / General discussionsReplies: 0Last Post: 4th Sep 2007, 12:27 -
Vdub Filter Chain
By christopheramos in forum Video ConversionReplies: 16Last Post: 3rd Sep 2007, 07:57