I'm re-encoding a SVCD. The original is split into three parts with 2-second overlaps between each disc. I have created a .d2v using DVD2AVI and have all the cut points intact.
My question is, how do I get it to cut the audio with it? The audio that DVD2AVI extracts has the overlapping audio parts...
Here is the script I'm using:
You can see above my tinkering with using three different sources and then just using the single .d2v instead (faster, better quality).Code:LoadPlugin("C:\Program Files\Video\DVD2SVCD\MPEG2Dec\MPEG2DEC2.dll") LoadPlugin("E:\Download\MPEG Conversion\KVCD\AviSynth\fluxsmooth.dll") LoadPlugin("E:\Download\MPEG Conversion\KVCD\AviSynth\blockbuster.dll") LoadPlugin("E:\Download\MPEG Conversion\KVCD\AviSynth\legalclip.dll") # LoadVFAPIPlugin("c:\program files\video\tmpgenc\m2v.vfp","m2vsource") # clip1 = ConvertToYUY2(m2vsource("c:\temp\dad\1\01.mpg")) # clip2 = ConvertToYUY2(m2vsource("c:\temp\dad\1\02.mpg")) # clip3 = ConvertToYUY2(m2vsource("c:\temp\dad\1\03.mpg")) # Trim(clip1,343,80553) + Trim(clip2,40,80433) + Trim(clip3,14,77308) # FlipVertical() mpeg2source("c:\temp\dad\dad.d2v") Trim(275,64446) + Trim(64507,128822) + Trim(128883,190450) LegalClip() FluxSmooth() BB_Resolution = 480 * 480 BB_StrengthConstant = 480 * 480 * 15 StrengthValue = round(BB_StrengthConstant / BB_Resolution) BlockBuster(method="noise", detail_min=1, detail_max=10, variance=1, cache=1024) BlockBuster(method="sharpen", detail_min=20, detail_max=90, strength=StrengthValue) LegalClip()
How can I get it to include the audio with it when trimming?
Thanks!!
+ Reply to Thread
Results 1 to 2 of 2
-
-
I figured it out, for those of you that are interested.
http://www.vcdhelp.com/forum/viewtopic.php?t=129139
Similar Threads
-
Avisynth source loading?
By yugurya in forum EditingReplies: 5Last Post: 22nd Jan 2012, 13:57 -
Cutting without damaging source.
By Stikke in forum EditingReplies: 8Last Post: 17th Aug 2011, 13:52 -
AviSynth and a WMV source
By shorto in forum Newbie / General discussionsReplies: 3Last Post: 22nd Feb 2008, 07:04 -
Cutting/Splitting an MP3 Audio with MP3Direct Cut
By UmmAddan in forum AudioReplies: 2Last Post: 22nd Jan 2008, 18:03 -
AviSynth not recognizing source type (source is animation)
By happypyro in forum DVD RippingReplies: 1Last Post: 5th Sep 2007, 13:48