zeldAIS
5th June 2008, 01:50
hi :)
I'm wondering what way can a sudden audio hiccup be removed when joining videos? I get audio hiccups usually when i join videos using addsplice and usually at the start of the 2nd vid.
here's a sample avisynth template i usually use.
LoadVirtualDubPlugin("Logo.vdf","Logo",0)
a = AVISource("Vid1.avi")
a = a.ChangeFPS(29.97)
a = a.ResampleAudio(48000)
b = AVISource("Vid2.avi").ConvertToRGB()
b = b.Logo(650, 5, 80, 2, 35, 195, 35, 5, "Logo.bmp", 0, 0, 0, 0, 0, 0, 0).ConvertToYV12()
b = b.converttoyuy2(interlaced=true)
b = b.AssumeFieldBased()
b = b.converttoyv12()
b = b.tweak(sat=1.14,bright=-5,cont=1.05)
b = b.limitedsharpenfaster()
b = b.tfm(pp=5,cthresh=3,mode=0).tdecimate()
b = b.Convolution3d(preset="movieHQ")
b = b.Removegrain(2)
b = b.Tomsmocomp(-1,1,1)
b = b.Sharpen(.2)
b = b.BicubicResize(704, 396)
b = b.TextSub("softsubs.ass")
b = b.ChangeFPS(29.97)
b = b.ResampleAudio(48000)
b = b.Trim(1,0)
a+b
Trim(1,0)
Normalize()
usually, after the 'a' video is finished in the final encoding, there will be a short audio "tick" or audio hiccup at the start of the 'b' video in the final joined encoded vid.
any help will be much appreciated :)
I'm wondering what way can a sudden audio hiccup be removed when joining videos? I get audio hiccups usually when i join videos using addsplice and usually at the start of the 2nd vid.
here's a sample avisynth template i usually use.
LoadVirtualDubPlugin("Logo.vdf","Logo",0)
a = AVISource("Vid1.avi")
a = a.ChangeFPS(29.97)
a = a.ResampleAudio(48000)
b = AVISource("Vid2.avi").ConvertToRGB()
b = b.Logo(650, 5, 80, 2, 35, 195, 35, 5, "Logo.bmp", 0, 0, 0, 0, 0, 0, 0).ConvertToYV12()
b = b.converttoyuy2(interlaced=true)
b = b.AssumeFieldBased()
b = b.converttoyv12()
b = b.tweak(sat=1.14,bright=-5,cont=1.05)
b = b.limitedsharpenfaster()
b = b.tfm(pp=5,cthresh=3,mode=0).tdecimate()
b = b.Convolution3d(preset="movieHQ")
b = b.Removegrain(2)
b = b.Tomsmocomp(-1,1,1)
b = b.Sharpen(.2)
b = b.BicubicResize(704, 396)
b = b.TextSub("softsubs.ass")
b = b.ChangeFPS(29.97)
b = b.ResampleAudio(48000)
b = b.Trim(1,0)
a+b
Trim(1,0)
Normalize()
usually, after the 'a' video is finished in the final encoding, there will be a short audio "tick" or audio hiccup at the start of the 'b' video in the final joined encoded vid.
any help will be much appreciated :)