mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
565 B
23 lines
565 B
namespace ErsatzTV.Core.Api.FFmpegProfiles; |
|
|
|
public record FFmpegFullProfileResponseModel( |
|
int Id, |
|
string Name, |
|
int ThreadCount, |
|
int HardwareAcceleration, |
|
string VaapiDisplay, |
|
int VaapiDriver, |
|
string VaapiDevice, |
|
int ResolutionId, |
|
int VideoFormat, |
|
int VideoBitrate, |
|
int VideoBufferSize, |
|
int TonemapAlgorithm, |
|
int AudioFormat, |
|
int AudioBitrate, |
|
int AudioBufferSize, |
|
int NormalizeLoudnessMode, |
|
int AudioChannels, |
|
int AudioSampleRate, |
|
bool NormalizeFramerate, |
|
bool? DeinterlaceVideo);
|
|
|