I have movie file that I need to show the timecode (running time) on. It must be "burned in" to the video. How can I do this?
feedback
|
|
You can use AviSynth. It is an amazingly powerful command script for in-line processing of videos, and its free. If your video is not already in .avi format, you can use AviSynth's DirectShowSource("myOriginalVideo.xyz") funciton, otherwise use AviSource("myOriginalVideo.avi"). How it works: Because the output of the .avs file is fully uncompressed (video and audio), you will need to feed "myNewVidwo.avs" into any video encoder you like; to recompress it. VirtualDub is very effective and straight-forward for the re-encoding step (VirtualDub is free). Here is an AviSynth script which will do the job. It puts H:MM:SS.nnn in the top left of the screen.
| ||||
|
feedback
|
|
I think this is what you're looking for:
| ||||
feedback
|