* add subtitle mode setting * start to add subtitle support * cuda test * move subtitle settings from ffmpeg profile to channel * fix image-based subtitles * experimental wip * subtitle fixes
15 lines
587 B
C#
15 lines
587 B
C#
namespace ErsatzTV.Application.FFmpegProfiles;
|
|
|
|
public class FFmpegSettingsViewModel
|
|
{
|
|
public string FFmpegPath { get; set; }
|
|
public string FFprobePath { get; set; }
|
|
public int DefaultFFmpegProfileId { get; set; }
|
|
public string PreferredAudioLanguageCode { get; set; }
|
|
public bool SaveReports { get; set; }
|
|
public int? GlobalWatermarkId { get; set; }
|
|
public int? GlobalFallbackFillerId { get; set; }
|
|
public int HlsSegmenterIdleTimeout { get; set; }
|
|
public int WorkAheadSegmenterLimit { get; set; }
|
|
public int InitialSegmentCount { get; set; }
|
|
} |