View Full Version : megui - avscutter
fatxy
13th December 2011, 20:44
Hello,
is there any possibility to change the default transition duration values?
you can edit it in the avs afterwards of course, but then I have problems with the audio synchronicity ...
thanks in advance
fatxy
fatxy
23rd December 2011, 17:50
or at least how to solve the audio sync issues afterwards
tebasuna51
24th December 2011, 00:56
What Transition Style do you use?
fatxy
24th December 2011, 12:14
mostly dissolve, i.e.
__t0.Dissolve(__t1.Dissolve(__t2.Dissolve(__t3.Dissolve(__t4.Dissolve(__t5.Dissolve(__t6, 60), 60), 60), 60), 60), 60)
__t0 ++ __t1 ++ __t2 ++ __t3 ++ __t4 ++ __t5 ++ __t6 ++ __t7
=> its easy to change the 60 value
but in in the clt xml there is no possiblity
<Framerate>50</Framerate>
<Style>DISSOLVE</Style>
tebasuna51
24th December 2011, 19:29
With 'No Transition' or 'Fade' the .clt work fine.
But 'Dissolve' is intended to use the same script to recode the audio:
"Dissolve is like AlignedSplice, except that the clips are combined with some overlap. The last overlap frames of the first video stream are blended progressively with the first overlap frames of the second video stream so that the streams fade into each other. The audio streams are blended similarly."
No matter the overlap value you use, cut the audio with .clt file always produce async.
Or you can edit the .clt file to modify the cut points by 30 (60/2). For instance, if:
__t0 = __film.trim(0, 1500)
__t1 = __film.trim(2000, 3150)
__t2 = __film.trim(5300, 9350)
The cut points in .clt must be:
trim(0, 1470)
trim(2030, 3120)
trim(5330, 9350)
Now the audio transition occurs at the middle of the Disolve effect without async.
fatxy
27th December 2011, 17:05
thanks a lot for the suggestion, but I think this wont help that much in my case
with the 'default' length 60 everything is fine, video & audio without any manual modifying
but I'd like to have something shorter like 8-12 frames
well I guess I have to add the audio part in the .avs as well :/
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.