* refactor create playout handler * refactor get all playouts handler * refactor delete playout handler * remove dead code * ignore unnamed artists for collections * more repository cleanup * more schedule items refactoring * more playout refactoring * refactor playout builder * refactor ffmpeg profiles * more ffmpeg profile refactoring * rework resolutions * refactor media collections * refactor config elements * update changelog * more cleanup
27 lines
733 B
C#
27 lines
733 B
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
using LanguageExt;
|
|
using MediatR;
|
|
|
|
namespace ErsatzTV.Application.FFmpegProfiles.Commands
|
|
{
|
|
public record UpdateFFmpegProfile(
|
|
int FFmpegProfileId,
|
|
string Name,
|
|
int ThreadCount,
|
|
bool Transcode,
|
|
HardwareAccelerationKind HardwareAcceleration,
|
|
int ResolutionId,
|
|
bool NormalizeVideo,
|
|
string VideoCodec,
|
|
int VideoBitrate,
|
|
int VideoBufferSize,
|
|
string AudioCodec,
|
|
int AudioBitrate,
|
|
int AudioBufferSize,
|
|
bool NormalizeLoudness,
|
|
int AudioChannels,
|
|
int AudioSampleRate,
|
|
bool NormalizeAudio) : IRequest<Either<BaseError, UpdateFFmpegProfileResult>>;
|
|
}
|