mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-04-21 17:01:58 +00:00
- 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
13 lines
No EOL
346 B
C#
13 lines
No EOL
346 B
C#
using CRD.Utils.Structs;
|
|
|
|
namespace CRD.Utils.Muxing.Structs;
|
|
|
|
public class SubtitleInput{
|
|
public LanguageItem Language{ get; set; }
|
|
public string File{ get; set; }
|
|
public bool ClosedCaption{ get; set; }
|
|
public bool Signs{ get; set; }
|
|
public int? Delay{ get; set; }
|
|
|
|
public DownloadedMedia? RelatedVideoDownloadMedia;
|
|
} |