emby-toolbox/EmbyToolbox/Models/ConversionPlan.cs
Emby Toolbox 6264b487fe Initial commit: Emby Toolbox (conversion scroll fix, bulk Del for tracks).
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-12 21:33:47 +05:00

20 lines
1.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
namespace EmbyToolbox.Models;
/// <summary>План шагов конвертации и краткое отображение.</summary>
public sealed class ConversionPlan
{
public IReadOnlyList<string> StepDescriptions { get; init; } = Array.Empty<string>();
public IReadOnlyList<ConversionTrackPlan> TrackParts { get; init; } = Array.Empty<ConversionTrackPlan>();
public ConversionPlanActionStats ActionStats { get; init; } = default;
public string ShortSummary { get; init; } = string.Empty;
public bool SuggestsSkip { get; init; }
public bool HasRealActions { get; init; }
public string TargetVideoBitrateMode { get; init; } = string.Empty;
public int? TargetVideoBitrateKbps { get; init; }
/// <summary>MPEG-TS → MKV: первичная попытка copy с genpts; при ошибке timestamp возможен fallback на перекодирование видео.</summary>
public bool RequiresTimestampFix { get; init; }
}