• Documentation
  • Api
  • Xabe.FFmpeg.Events
  • ConversionProgressEventArgs
Show / Hide Table of Contents
  • System
    • TimeExtensions
  • Xabe.FFmpeg
    • AudioCodec
    • AudioStream
    • BitstreamFilter
    • Conversion
    • ConversionPreset
    • ConversionQueue
    • ConversionQueue.ConversionQueueEventHandler
    • FFmpeg
    • Flag
    • Format
    • HardwareAccelerator
    • Hash
    • IAudioStream
    • IConversion
    • IConversionResult
    • IFilterConfiguration
    • IInputBuilder
    • IMediaInfo
    • InputBuilder
    • IProbe
    • IStream
    • ISubtitleStream
    • IVideoStream
    • MediaInfo
    • ParameterPosition
    • PixelFormat
    • Position
    • Probe
    • RotateDegrees
    • StreamType
    • SubtitleStream
    • VideoCodec
    • VideoSize
    • VideoStream
  • Xabe.FFmpeg.Downloader
    • FFmpegDownloader
    • FFmpegVersion
    • IFFMpegDownloaderBase
  • Xabe.FFmpeg.Events
    • ConversionProgressEventArgs
    • ConversionProgressEventHandler
  • Xabe.FFmpeg.Exceptions
    • ConversionException
    • FFmpegNoSuitableOutputFormatFoundException
    • FFmpegNotFoundException
    • HardwareAcceleratorNotFoundException
    • InvalidBitstreamFilterException
    • InvalidInputException
    • UnknownDecoderException

Class ConversionProgressEventArgs

Conversion information

Inheritance
System.Object
System.EventArgs
ConversionProgressEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Xabe.FFmpeg.Events
Assembly: Xabe.FFmpeg.dll
Syntax
public class ConversionProgressEventArgs : EventArgs

Constructors

ConversionProgressEventArgs(TimeSpan, TimeSpan)

Declaration
public ConversionProgressEventArgs(TimeSpan timeSpan, TimeSpan totalTime)
Parameters
Type Name Description
System.TimeSpan timeSpan
System.TimeSpan totalTime

Properties

Duration

Current processing time

Declaration
public TimeSpan Duration { get; }
Property Value
Type Description
System.TimeSpan

Percent

Percent of conversion

Declaration
public int Percent { get; }
Property Value
Type Description
System.Int32

TotalLength

Input movie length

Declaration
public TimeSpan TotalLength { get; }
Property Value
Type Description
System.TimeSpan
In This Article
  • Constructors
    • ConversionProgressEventArgs(TimeSpan, TimeSpan)
  • Properties
    • Duration
    • Percent
    • TotalLength
Back to top Xabe