Gets/sets a number of intermediate frames that will be automatically inserted between the frame which is currently added and the previous one to create a transition effect.
Namespace:
Aurigma.GraphicsMill.Codecs
Assembly:
Aurigma.GraphicsMill.Codecs.AviProcessor (in Aurigma.GraphicsMill.Codecs.AviProcessor.dll)
Public Property IntermediateFrameCount As Integer
public int IntermediateFrameCount { get; set; }
Use this parameter if you need to create a transition effect (i.e. when the previous frame is transformed into the next one with some way). Otherwise set this value to 0.
If you set the value which is higher than 0, do not forget to initialize the Transition property.
When you calculate the result movie duration, do not forget to take this value into account. E.g. if you set this value to 10, on each call of the AddFrame(IFrame) method, you actually add 11 frames into the movie rather than 1.
You should set this value before you open the writer object. You cannot change it when the writer is already opened!