* log full exceptions in plex tv api client * add optional ffmpeg reports
11 lines
303 B
C#
11 lines
303 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 bool SaveReports { get; set; }
|
|
}
|
|
}
|