FFMpegCore/FFMpegCore/FFProbe/MediaFormat.cs
2021-01-29 16:03:59 +03:00

16 lines
No EOL
478 B
C#

using System;
using System.Collections.Generic;
namespace FFMpegCore
{
public class MediaFormat
{
public TimeSpan Duration { 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; }
}
}