mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
8 lines
169 B
C#
8 lines
169 B
C#
namespace splitter.probe;
|
|
|
|
public sealed class FfprobeResult
|
|
{
|
|
public List<FfprobeStream>? Streams { get; set; }
|
|
public FfprobeFormat? Format { get; set; }
|
|
}
|