Log in

View Full Version : 2006 Superbowl script


U149113
9th February 2006, 03:30
I have a Superbowl HD cap and want to do two things:


Make a standard MPEG2 DVD set, one with each half with 16:9 aspect intact
Make a high quality XVID to play on my Phillips 642 with 16:9 aspect intact


I need some help on the Avisynth piece for each of these. Right now I have processed the HD cap through HDTVtoMPEG2 and DGIndex. I have an .ac3 with -513ms delay. I will be using CCE Basic 2.6x for the Mpeg2/DVD piece and VirtualDub Mod for the XVID. Target size for the XVID is 4.7GB DVD. I still need to edit commercials out.

Any direction on how to write Avisynth's scripts for these would be greatly appreciated. Here is what I have right now based on some of the threads posted about the process.

# Created by AVSEdit
# ADMIN 2/08/2006
# Convert 1280x720P to DVD

LoadPlugin("C:\Program Files\GordianKnot\AviSynthPlugins\DGDecode.dll")
LoadPlugin("C:\Program Files\GordianKnot\AviSynthPlugins\Decomb.dll")
LoadPlugin("C:\Program Files\GordianKnot\AviSynthPlugins\undot.dll")
LoadPlugin("C:\Program Files\GordianKnot\AviSynthPlugins\BT709ToBT601.dll")
video = MPEG2Source("E:\Super Bowl 2006\Superbowl2006.d2v")
audio = DirectShowSource("E:\Super Bowl 2006\Superbowl2006 PID 014 T01 3_2ch 384Kbps DELAY -513ms.ac3")
BT709ToBT601(video)
SelectEven()
#Decimate()
UnDot()
Crop(0,0,-4,0)
LanczosResize(720,480)
#Delay the audio (according to delay given by DVD2AVI)
#audio = audio.DelayAudio(-0.513)

#Interleave the video and audio together.
#av = AudioDub(video,audio)

#Return the video/audio
#return av

Mug Funky
9th February 2006, 06:51
source filters aside, try:

lanczosresize(720,480)
assumetff().separatefields().selectevery(4,0,3).weave()

then encode as interlaced (top field first!) xvid. this should play back nicely on your standalone.

Pookie
10th February 2006, 17:25
Hey Mug, even if the source is 720p ?

scharfis_brain
10th February 2006, 18:14
I am not Mug Funky, but the answer is: YES.