feat(server): tone-mapping (#3512)

* added tonemapping

* check for hdr in transcode policy

* merged video thumbnail and transcoding logic

* updated tests

* removed log

* added dashboard option, updated api

* `out_color_matrix` for sdr video thumbs, cleanup

* updated tests & styling

* refactored tonemapping setting

* fixed tests

* formatting

* added tests

* updated api

* set target npl higher for mobius and reinhard

* convert to nv12 before nvenc

* fix test

---------

Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
This commit is contained in:
Mert
2023-08-07 16:35:25 -04:00
committed by GitHub
parent 19da705fcb
commit 1d37d8cac0
26 changed files with 549 additions and 89 deletions

View File

@@ -21,6 +21,7 @@ class SystemConfigFFmpegDto {
required this.targetResolution,
required this.targetVideoCodec,
required this.threads,
required this.tonemap,
required this.transcode,
required this.twoPass,
});
@@ -41,6 +42,8 @@ class SystemConfigFFmpegDto {
int threads;
ToneMapping tonemap;
TranscodePolicy transcode;
bool twoPass;
@@ -55,6 +58,7 @@ class SystemConfigFFmpegDto {
other.targetResolution == targetResolution &&
other.targetVideoCodec == targetVideoCodec &&
other.threads == threads &&
other.tonemap == tonemap &&
other.transcode == transcode &&
other.twoPass == twoPass;
@@ -69,11 +73,12 @@ class SystemConfigFFmpegDto {
(targetResolution.hashCode) +
(targetVideoCodec.hashCode) +
(threads.hashCode) +
(tonemap.hashCode) +
(transcode.hashCode) +
(twoPass.hashCode);
@override
String toString() => 'SystemConfigFFmpegDto[accel=$accel, crf=$crf, maxBitrate=$maxBitrate, preset=$preset, targetAudioCodec=$targetAudioCodec, targetResolution=$targetResolution, targetVideoCodec=$targetVideoCodec, threads=$threads, transcode=$transcode, twoPass=$twoPass]';
String toString() => 'SystemConfigFFmpegDto[accel=$accel, crf=$crf, maxBitrate=$maxBitrate, preset=$preset, targetAudioCodec=$targetAudioCodec, targetResolution=$targetResolution, targetVideoCodec=$targetVideoCodec, threads=$threads, tonemap=$tonemap, transcode=$transcode, twoPass=$twoPass]';
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
@@ -85,6 +90,7 @@ class SystemConfigFFmpegDto {
json[r'targetResolution'] = this.targetResolution;
json[r'targetVideoCodec'] = this.targetVideoCodec;
json[r'threads'] = this.threads;
json[r'tonemap'] = this.tonemap;
json[r'transcode'] = this.transcode;
json[r'twoPass'] = this.twoPass;
return json;
@@ -106,6 +112,7 @@ class SystemConfigFFmpegDto {
targetResolution: mapValueOfType<String>(json, r'targetResolution')!,
targetVideoCodec: VideoCodec.fromJson(json[r'targetVideoCodec'])!,
threads: mapValueOfType<int>(json, r'threads')!,
tonemap: ToneMapping.fromJson(json[r'tonemap'])!,
transcode: TranscodePolicy.fromJson(json[r'transcode'])!,
twoPass: mapValueOfType<bool>(json, r'twoPass')!,
);
@@ -163,6 +170,7 @@ class SystemConfigFFmpegDto {
'targetResolution',
'targetVideoCodec',
'threads',
'tonemap',
'transcode',
'twoPass',
};