bwlonsdale
27th March 2005, 20:46
I have the following script:
----------------------------
loadplugin ("E:\dgmpgdec121\DGDecode.dll")
loadplugin ("E:\decomb521\Decomb521.dll")
mpeg2source ("C:\source.d2v")
Seg1=BlankClip(length=11, width=1280, height=720, pixel_type="YV12", fps=23.976, color=$000000)
Seg2=Telecide(order=1,guide=1,post=2,back=1,hints=true).Decimate(Cycle=5,Quality=3).BilinearResize(1280,720).Trim(12,0)
KillAudio(Seg1)
KillAudio(Seg2)
Seg1+Seg2
-----------------------------
When I load this into VirtualDub I get an avisynth error saying:-
Splice:One clip has audio and the other doesn't (not allowed)
I kinda thought I was killing the audio...!?
All I'm trying to do is remove the first 12 frames from the video and adding those 12 frames back in as blank frames (The first 12 frames of the video have a lot of useless noise on them so I just want to repalce them with blank ones.)
Avisynth 2.55, virtualdub 1.6.4 (older versions do the same)
thanks...
----------------------------
loadplugin ("E:\dgmpgdec121\DGDecode.dll")
loadplugin ("E:\decomb521\Decomb521.dll")
mpeg2source ("C:\source.d2v")
Seg1=BlankClip(length=11, width=1280, height=720, pixel_type="YV12", fps=23.976, color=$000000)
Seg2=Telecide(order=1,guide=1,post=2,back=1,hints=true).Decimate(Cycle=5,Quality=3).BilinearResize(1280,720).Trim(12,0)
KillAudio(Seg1)
KillAudio(Seg2)
Seg1+Seg2
-----------------------------
When I load this into VirtualDub I get an avisynth error saying:-
Splice:One clip has audio and the other doesn't (not allowed)
I kinda thought I was killing the audio...!?
All I'm trying to do is remove the first 12 frames from the video and adding those 12 frames back in as blank frames (The first 12 frames of the video have a lot of useless noise on them so I just want to repalce them with blank ones.)
Avisynth 2.55, virtualdub 1.6.4 (older versions do the same)
thanks...