Hi,
You've reached the limits of cross(), and should now move to
smart_cross(), congratulations :p
I don't have any example ready, but I'll explain a bit. The
smart_cross() passes two new bits of information to your transition
function: the volume levels and metadata packets of the two contiguous
tracks. So your function can be something like:
def transition (a, b, ma, mb, sa, sb)
if ma["comment"]=="dontfade" then
sequence([sa,sb])
else
your usual transition
and of course you can take advantage of
the levels a and b to tweak it
end
end
Good luck with it.
--
David