AfterDawn.com

Script Examples

Here are some examples of scripts constructed to frameserve my files. They're using the script elements described previously. Every script will be included with the guides on MPEG encoding, although you'll still need to know where to put the source file name.

The 39 Steps

MPEG2Source("D:\Storage 3\Basic DVD Project\Feature\The_39_Steps.d2v", cpu=0, info=3)
ColorMatrix(mode="Rec.709->Rec.601", hints=true)
Lanczos4Resize(720,576)

Destruction Inc.

MPEG2Source("D:\Wherever\Destruction_Inc.d2v", cpu=0, info=3)
tfm(d2v="D:\Wherever\Destruction_Inc.d2v")
tdecimate()
Assumefps(25)
ColorMatrix(mode="Rec.709->Rec.601", hints=true)
Lanczos4Resize(720,576)

Electric Earthquake

MPEG2Source("D:\Wherever\Electric_Earthquake.d2v", cpu=0, info=3)
tfm(d2v="D:\Wherever\Electric_Earthquake.d2v")
tdecimate()
Assumefps(25)
Lanczos4Resize(720,576)

Eleventh Hour

MPEG2Source("D:\Wherever\Eleventh_Hour.d2v", cpu=0, info=3)
tfm(d2v="D:\Wherever\Eleventh_Hour.d2v")
tdecimate()
Lanczos4Resize(720,576)

The Mummy Strikes

MPEG2Source("D:\Wherever\Mummy_Strikes.d2v", cpu=0, info=3)
tfm()
tdecimate()
ColorMatrix(mode="Rec.709->Rec.601", hints=true)
Lanczos4Resize(720,576)

The Amazing Transparent Man

DirectShowSource("D:\Wherever\Amazing_Trans_Man.mp4", 23.976).KillAudio()
Lanczos4Resize(720,576)
Written by: Rich Fiscus