FFMpegCore/FFMpegCore/FFProbe/MediaFormat.cs
2023-10-05 08:58:50 +02:00

14 lines
495 B
C#

namespace FFMpegCore
{
public class MediaFormat : ITagsContainer
{
public TimeSpan Duration { get; set; }
public TimeSpan StartTime { get; set; }
public string FormatName { get; set; } = null!;
public string FormatLongName { get; set; } = null!;
public int StreamCount { get; set; }
public double ProbeScore { get; set; }
public double BitRate { get; set; }
public Dictionary<string, string>? Tags { get; set; }
}
}