mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
13 lines
265 B
C#
13 lines
265 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using static splitter.ProbeVideo;
|
|
|
|
namespace splitter;
|
|
|
|
public sealed class FfprobeResult
|
|
{
|
|
public List<FfprobeStream>? Streams { get; set; }
|
|
public FfprobeFormat? Format { get; set; }
|
|
}
|