splitter/splitter-cli/FfprobeResult.cs
2026-05-24 09:16:39 +01:00

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; }
}