mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 01:55:45 +00:00
14 lines
495 B
C#
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; }
|
|
}
|
|
}
|