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.
25 lines
684 B
25 lines
684 B
using ErsatzTV.Core; |
|
using LanguageExt; |
|
using MediatR; |
|
|
|
namespace ErsatzTV.Application.FFmpegProfiles.Commands |
|
{ |
|
public record CreateFFmpegProfile( |
|
string Name, |
|
int ThreadCount, |
|
bool Transcode, |
|
int ResolutionId, |
|
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) : IRequest<Either<BaseError, FFmpegProfileViewModel>>; |
|
}
|
|
|