mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
16 lines
496 B
C#
16 lines
496 B
C#
namespace Nikse.SubtitleEdit.Core
|
|
{
|
|
public class VideoInfo
|
|
{
|
|
public int Width { get; set; }
|
|
public int Height { get; set; }
|
|
public double TotalMilliseconds { get; set; }
|
|
public double TotalSeconds { get; set; }
|
|
public double FramesPerSecond { get; set; }
|
|
public double TotalFrames { get; set; }
|
|
public string VideoCodec { get; set; }
|
|
public string FileType { get; set; }
|
|
public bool Success { get; set; }
|
|
}
|
|
}
|