DicomObjects.NET Core Documentation
DicomObjects.Video Namespace / VideoCompressionOptions Class / OutputFrameRate Property



In This Topic
    OutputFrameRate Property
    In This Topic
    The rate at which frame are fed to the codec
    Syntax
    'Declaration
     
    
    Public Property OutputFrameRate As Integer
    'Usage
     
    
    Dim instance As VideoCompressionOptions
    Dim value As Integer
     
    instance.OutputFrameRate = value
     
    value = instance.OutputFrameRate
    public int OutputFrameRate {get; set;}
    public:
    property int OutputFrameRate {
       int get();
       void set (    int value);
    }
    Remarks
    By default, this is the same as InputFrameRate, but some codecs (especially when combined with DICOM rules) have specific requirements, so this can be set independently. If the input and output rates differ, then the ffmpeg "fps" filter is applied to duplicate/drop as required.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also