mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-15 18:45:44 +00:00
16 lines
No EOL
478 B
C#
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; }
|
|
}
|
|
} |