mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
13 lines
195 B
C#
13 lines
195 B
C#
namespace splitter;
|
|
|
|
public record VideoInfo(
|
|
double Duration,
|
|
int Width,
|
|
int Height,
|
|
double Fps,
|
|
double Bitrate,
|
|
Point2f Sar,
|
|
Point2f Dar,
|
|
int Rotation = 0
|
|
);
|