arehm
17th February 2005, 21:52
Here's what I'm trying to do. I'm probably missing something stupid, or serached for the wrong things, but here goes.
I'm caturing via firewire from my DVR (Motorola 6412) to .ts files. I convert the .ts to mpg with HDTVtoMPEG (1.11beta) I then want to convert to DVD spec so I can burn DVD's. I've been using this guide here.
http://replayguide.sourceforge.net/dct6412/index.html
The PQ is excellent, but I am getting bad microstutter and am unsure how to remove it. I have been in contact with the guides author and he has been helpful, but has just noticed the stutter himself ad is also trying to resolve it. Here is the .avs I'm using:
#AVS Script for 720p 60fps source
#Load the MPEG2DEC3 and Decomb plugins.
#Mine are located in c:\avsfilters
LoadPlugin("c:\avsfilters\decomb.dll")
LoadPlugin("c:\avsfilters\MPEG2Dec3.dll")
#Load the video and audio files.
video = MPEG2Source("superbowl.d2v")
audio = WAVSource("superbowl.wav")
#Reduce framerate to 30fps and IVTC
video = video.SelectEven()
video = video.Telecide(0).Decimate(cycle=5)
#Delay the audio (according to delay given by DVD2AVI)
audio = audio.DelayAudio(-0.723)
#Resize the video to make it complient for end product specs.
#For NTSC DVD spec (with proper aspect ratio):
video = video.BicubicResize(704,480)
video = video.AddBorders(8,0,8,0)
#Interleave the video and audio together.
av = AudioDub(video,audio)
#Return the video/audio
return av
Can anyone offer any sugestions? Id i've missed something obvious, please let me know kindly....
aaron
I'm caturing via firewire from my DVR (Motorola 6412) to .ts files. I convert the .ts to mpg with HDTVtoMPEG (1.11beta) I then want to convert to DVD spec so I can burn DVD's. I've been using this guide here.
http://replayguide.sourceforge.net/dct6412/index.html
The PQ is excellent, but I am getting bad microstutter and am unsure how to remove it. I have been in contact with the guides author and he has been helpful, but has just noticed the stutter himself ad is also trying to resolve it. Here is the .avs I'm using:
#AVS Script for 720p 60fps source
#Load the MPEG2DEC3 and Decomb plugins.
#Mine are located in c:\avsfilters
LoadPlugin("c:\avsfilters\decomb.dll")
LoadPlugin("c:\avsfilters\MPEG2Dec3.dll")
#Load the video and audio files.
video = MPEG2Source("superbowl.d2v")
audio = WAVSource("superbowl.wav")
#Reduce framerate to 30fps and IVTC
video = video.SelectEven()
video = video.Telecide(0).Decimate(cycle=5)
#Delay the audio (according to delay given by DVD2AVI)
audio = audio.DelayAudio(-0.723)
#Resize the video to make it complient for end product specs.
#For NTSC DVD spec (with proper aspect ratio):
video = video.BicubicResize(704,480)
video = video.AddBorders(8,0,8,0)
#Interleave the video and audio together.
av = AudioDub(video,audio)
#Return the video/audio
return av
Can anyone offer any sugestions? Id i've missed something obvious, please let me know kindly....
aaron