mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-12 20:32:11 +00:00
14 lines
640 B
C#
14 lines
640 B
C#
namespace AIStudio.Tools.Rust;
|
|
|
|
/// <summary>Successful terminal result returned by Rust media normalization.</summary>
|
|
/// <param name="OutputPath">Committed normalized output path.</param>
|
|
/// <param name="DetectedFormat">Detected container diagnostic.</param>
|
|
/// <param name="DetectedCodec">Selected codec diagnostic.</param>
|
|
/// <param name="DurationMs">Normalized duration in milliseconds.</param>
|
|
/// <param name="PassThrough">Whether the source was copied unchanged.</param>
|
|
public sealed record MediaJobResult(
|
|
string OutputPath,
|
|
string DetectedFormat,
|
|
string DetectedCodec,
|
|
ulong DurationMs,
|
|
bool PassThrough); |