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.
33 lines
997 B
33 lines
997 B
using ErsatzTV.Core; |
|
using ErsatzTV.Core.Domain; |
|
using ErsatzTV.Core.FFmpeg; |
|
|
|
namespace ErsatzTV.Application.FFmpegProfiles; |
|
|
|
public record UpdateFFmpegProfile( |
|
int FFmpegProfileId, |
|
string Name, |
|
int ThreadCount, |
|
HardwareAccelerationKind HardwareAcceleration, |
|
string VaapiDisplay, |
|
VaapiDriver VaapiDriver, |
|
string VaapiDevice, |
|
int? QsvExtraHardwareFrames, |
|
int ResolutionId, |
|
ScalingBehavior ScalingBehavior, |
|
FFmpegProfileVideoFormat VideoFormat, |
|
string VideoProfile, |
|
string VideoPreset, |
|
bool AllowBFrames, |
|
FFmpegProfileBitDepth BitDepth, |
|
int VideoBitrate, |
|
int VideoBufferSize, |
|
FFmpegProfileTonemapAlgorithm TonemapAlgorithm, |
|
FFmpegProfileAudioFormat AudioFormat, |
|
int AudioBitrate, |
|
int AudioBufferSize, |
|
NormalizeLoudnessMode NormalizeLoudnessMode, |
|
int AudioChannels, |
|
int AudioSampleRate, |
|
bool NormalizeFramerate, |
|
bool DeinterlaceVideo) : IRequest<Either<BaseError, UpdateFFmpegProfileResult>>;
|
|
|