Crunchy-Downloader/CRD/Utils/Muxing/Structs/MergerInput.cs
Elwador c4ba220d1b - Added **UseDefaults toggle** for endpoints to choose between **app defaults** (auto-updated with new releases) or **custom parameters**
- Added **authentication parameters** to the **Android TV endpoint**
- Changed **parser and HLS download handling** to support the new manifest/codec format
- Refactored **MKVMerge and FFmpeg command building**
- Updated android tv token
2026-03-24 12:15:22 +01:00

12 lines
No EOL
337 B
C#

using CRD.Utils.Structs;
namespace CRD.Utils.Muxing.Structs;
public class MergerInput{
public string Path{ get; set; }
public LanguageItem Language{ get; set; }
public int? Duration{ get; set; }
public int? Delay{ get; set; }
public bool IsAudioRoleDescription{ get; set; }
public int? Bitrate{ get; set; }
}