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.
24 lines
639 B
24 lines
639 B
using ErsatzTV.Application.Resolutions; |
|
|
|
namespace ErsatzTV.Application.FFmpegProfiles |
|
{ |
|
public record FFmpegProfileViewModel( |
|
int Id, |
|
string Name, |
|
int ThreadCount, |
|
bool Transcode, |
|
ResolutionViewModel Resolution, |
|
bool NormalizeResolution, |
|
string VideoCodec, |
|
bool NormalizeVideoCodec, |
|
int VideoBitrate, |
|
int VideoBufferSize, |
|
string AudioCodec, |
|
bool NormalizeAudioCodec, |
|
int AudioBitrate, |
|
int AudioBufferSize, |
|
int AudioVolume, |
|
int AudioChannels, |
|
int AudioSampleRate, |
|
bool NormalizeAudio); |
|
}
|
|
|