VideoHelp Forum




+ Reply to Thread
Results 1 to 5 of 5
  1. Member stackner's Avatar
    Join Date
    Feb 2004
    Location
    Digital World, Australia
    Search Comp PM
    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?
    Quote Quote  
  2. I don't know if this suits you but have a look on this
    http://www.profoundeffects.com/products/ut/scripts.php?script=pe_timecode
    Cpu power is never enough
    Quote Quote  
  3. Member
    Join Date
    Mar 2003
    Location
    Uranus
    Search Comp PM
    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 )
    }
    Quote Quote  
  4. Член BJ_M's Avatar
    Join Date
    Jul 2002
    Location
    Canada
    Search Comp PM
    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)
    Quote Quote  
  5. i would also like to know how to do this with premiere. if anyone has any advice please post!
    thanks!
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!