FFMpegCore/FFMpegCore/FFProbe/Models/VideoStream.cs
Malte Rosenbjerg 152683323e Cleanup
Former-commit-id: d95f687e46
2020-05-12 21:05:00 +02:00

18 lines
No EOL
679 B
C#

using FFMpegCore.Models;
namespace FFMpegCore
{
public class VideoStream : MediaStream
{
public double AvgFrameRate { get; internal set; }
public int BitsPerRawSample { get; internal set; }
public (int Width, int Height) DisplayAspectRatio { get; internal set; }
public string Profile { get; internal set; } = null!;
public int Width { get; internal set; }
public int Height { get; internal set; }
public double FrameRate { get; internal set; }
public string PixelFormat { get; internal set; } = null!;
public PixelFormat GetPixelFormatInfo() => FFMpegUtils.GetPixelFormat(PixelFormat);
}
}