what i want to do is when i do all my effects to my video with adobe premiere (can use other tools if needed) to add a counter / timer to the bottom or top edge of the video like with some dvds when you get the extras that still have it on the bottom or top edge. i know how to add things over video but a program or plugin to generate the counter?
+ Reply to Thread
Results 1 to 5 of 5
-
-
I don't know if this suits you but have a look on this
http://www.profoundeffects.com/products/ut/scripts.php?script=pe_timecodeCpu power is never enough -
Here is an AviSynth script
Code:# Add time to a movie CR = chr(13) SP = " " t = 0.0 avisource( "movie.avi" ) W = Width H = Height ftime = 1.0/Framerate ScriptClip( last , " t = t + ftime " + CR + \ " s = time_str( t ) " + CR + \ " Subtitle( s , x = (W/2) , y = (H-20) ) " ) return( last ) # Returns a string representing "sec" seconds in HH:MM:SS.SSS format Function time_str( float sec ) { f = int( (Frac(sec) * 1000.0) + 0.5 ) t = int( sec ) ss = t % 60 t = t / 60 mm = t % 60 t = t / 60 hh = t str = LeftStr( ( "0" + String( hh ) ) , 2 ) + ":" + \ LeftStr( ( "0" + String( mm ) ) , 2 ) + ":" + \ LeftStr( ( "0" + String(ss ) ) , 2 ) + "." + \ LeftStr( ( String(f) + "00" ) , 3 ) return( str ) }
-
its supposed to be HH:MM:SS.FF (frames = F) and its called smpte time code ..
you will also see reel , shot, camera and some more info sometimes.
you can add this on a sony vegas system very easy .."Each problem that I solved became a rule which served afterwards to solve other problems." - Rene Descartes (1596-1650) -
i would also like to know how to do this with premiere. if anyone has any advice please post!
thanks!
Similar Threads
-
Grainy video footage
By ccorwin in forum Newbie / General discussionsReplies: 2Last Post: 11th Feb 2011, 01:24 -
Remove timer counter from avi
By patvison in forum Newbie / General discussionsReplies: 4Last Post: 19th Oct 2010, 17:10 -
Easy way to add a Countdown Timer to a video
By kelemvor in forum EditingReplies: 0Last Post: 15th Jun 2010, 22:18 -
footage from 5d Mark II mixed with XLII footage
By segan in forum Newbie / General discussionsReplies: 2Last Post: 13th May 2010, 14:24 -
Video Footage, Rotating the footage.
By nikon1898 in forum EditingReplies: 2Last Post: 14th Jun 2007, 04:54