Sat32
20th May 2005, 03:43
I've been trying to create a script
to frame serve to Nero Recode. I am very new at this scripting
thing. I want to make a script that will be pretty much universal for
any AVI file.
I use Gspot to export and then rename the *.txt to AVS using RenameIT.
The problem I'm having is adding filters is messing up the A/V sync.
and with normalize there is no audio here is the script I am trying now.
SetMemoryMax(64)
LoadPlugin="Msmooth.dll"
VideoClip = avisource("\Path\.avi", Audio=False)
AudioClip = Directshowsource("\Path\.avi", FPS=23.976, Video=False)
VideoClip = ConvertToYV12(VideoClip)
VideoClip = Msmooth(VideoClip, threshold=55, Strength=5)
AudioClip = Normalize(AudioClip, 0.98)
Return audiodub(Videoclip, AudioClip)
This script works fine
SetMemoryMax(64)
LoadPlugin="Msmooth.dll"
VideoClip = avisource("\Path\.avi", Audio=False)
AudioClip = Directshowsource("\Path\.avi", FPS=23.976, Video=False)
VideoClip = ConvertToYV12(VideoClip)
Return audiodub(Videoclip, AudioClip)
What am I doing wrong????
to frame serve to Nero Recode. I am very new at this scripting
thing. I want to make a script that will be pretty much universal for
any AVI file.
I use Gspot to export and then rename the *.txt to AVS using RenameIT.
The problem I'm having is adding filters is messing up the A/V sync.
and with normalize there is no audio here is the script I am trying now.
SetMemoryMax(64)
LoadPlugin="Msmooth.dll"
VideoClip = avisource("\Path\.avi", Audio=False)
AudioClip = Directshowsource("\Path\.avi", FPS=23.976, Video=False)
VideoClip = ConvertToYV12(VideoClip)
VideoClip = Msmooth(VideoClip, threshold=55, Strength=5)
AudioClip = Normalize(AudioClip, 0.98)
Return audiodub(Videoclip, AudioClip)
This script works fine
SetMemoryMax(64)
LoadPlugin="Msmooth.dll"
VideoClip = avisource("\Path\.avi", Audio=False)
AudioClip = Directshowsource("\Path\.avi", FPS=23.976, Video=False)
VideoClip = ConvertToYV12(VideoClip)
Return audiodub(Videoclip, AudioClip)
What am I doing wrong????