This documentation is for the old version. Go to the latest Graphics Mill docs

DSReader.FramesPerSecond Property

Gets the frames per second ratio of the video file.

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill.Codecs.MediaProcessor (in Aurigma.GraphicsMill.Codecs.MediaProcessor.dll)

Syntax

Visual Basic
Public ReadOnly Property FramesPerSecond As Integer
C#
public int FramesPerSecond { get; }

Property Value

An integer value which specifies how many frames should be displayed in one second.

Examples

This example shows how to get reader properties.
Visual Basic
Private Sub GetDSReaderProperties(ByVal aReader As DSReader)
    Console.WriteLine("Framework priority: " & _
        aReader.CodecPriority.ToString())
    Console.WriteLine("Duration of the opened file: " & _
        aReader.Duration.ToString())
    Console.WriteLine("Number of frames in the opened file: " & _
        aReader.FrameCount.ToString())
End Sub
C#
private void GetDSReaderProperties(DSReader aReader)
{
    Console.WriteLine("Framework priority: " +
        aReader.CodecPriority.ToString());
    Console.WriteLine("Duration of the opened file: " +
        aReader.Duration.ToString());
    Console.WriteLine("Number of frames in the opened file: " +
        aReader.FrameCount.ToString());
}

See Also

Reference