For reference, since the original documentation of the DVAutoTimeStampEx plugin seems to be lost, here is what I could gather by looking at my old scripts.
First, you need to set a path to the avi file in DV format to read the date codes from (obviously it should be the same avi just read by AviSynth without any trimming):
Code:
"C:\DV Camcorder\MyCapture.avi"
If you want to add the date code not to the entire video but only part of it you can use these two:
Code:
firstframe=0
lastframe=-1
Sets the font to be used:
Code:
font="lucida console"
Effects to be used for rendering the font.
g: Softens the font rendering
b: Bold
i: Italics
f(frames, frames): Fade effect
For example this fades the date code in and out for 25 frames and softens the font:
Code:
effects="gf(25,25)"
(There may be more effects than that but these were all the effects I could find in my old scripts.)
Code:
size=22
x=-64
y=512
Should be self-explanatory.
Date format used for drawing the date onto the video:
Code:
dateformat="{H:mm:ss}|{dd.MM.yyyy}"
"|" breaks a line.
For hours,
H: 24 hour time format
h: 12 hour time format
For month,
M: 9
MM: 09
MMM: Sep
MMMM: September
Code:
textcolor=$00FFFFFF
halocolor=$00000000
Text and halo color to use. The first two are the alpha level (00 = opaque), the last six are the actual color (FFFFFF = white).
If you do not want the entire video to display a date, you can use these two to show a date for a given amount of frames (autolength) after a break in the time code (read: scene change) of "threshold" frames:
Code:
threshold=10
autolength=75
For example, this code
Code:
DVAutoTimeStampEx("MyCapture.avi", firstframe=0, lastframe=-1, font="lucida console", effects="g",
\ size=22, x=-64, y=512, dateformat="{H:mm:ss}|{dd.MM.yyyy}", textcolor=$00FFFFFF, halocolor=$00000000)
produces this output on PAL DV:

[Attachment 61214 - Click to enlarge]