You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-07-17 13:37:43 +02:00
feat(server): accepted video containers (#11274)
* add accepted container config * update api * mp4 option makes no sense * add to transcoding settings * wording * updated spec config * formatting
This commit is contained in:
@ -16,6 +16,7 @@ class SystemConfigFFmpegDto {
|
||||
required this.accel,
|
||||
required this.accelDecode,
|
||||
this.acceptedAudioCodecs = const [],
|
||||
this.acceptedContainers = const [],
|
||||
this.acceptedVideoCodecs = const [],
|
||||
required this.bframes,
|
||||
required this.cqMode,
|
||||
@ -42,6 +43,8 @@ class SystemConfigFFmpegDto {
|
||||
|
||||
List<AudioCodec> acceptedAudioCodecs;
|
||||
|
||||
List<VideoContainer> acceptedContainers;
|
||||
|
||||
List<VideoCodec> acceptedVideoCodecs;
|
||||
|
||||
/// Minimum value: -1
|
||||
@ -92,6 +95,7 @@ class SystemConfigFFmpegDto {
|
||||
other.accel == accel &&
|
||||
other.accelDecode == accelDecode &&
|
||||
_deepEquality.equals(other.acceptedAudioCodecs, acceptedAudioCodecs) &&
|
||||
_deepEquality.equals(other.acceptedContainers, acceptedContainers) &&
|
||||
_deepEquality.equals(other.acceptedVideoCodecs, acceptedVideoCodecs) &&
|
||||
other.bframes == bframes &&
|
||||
other.cqMode == cqMode &&
|
||||
@ -117,6 +121,7 @@ class SystemConfigFFmpegDto {
|
||||
(accel.hashCode) +
|
||||
(accelDecode.hashCode) +
|
||||
(acceptedAudioCodecs.hashCode) +
|
||||
(acceptedContainers.hashCode) +
|
||||
(acceptedVideoCodecs.hashCode) +
|
||||
(bframes.hashCode) +
|
||||
(cqMode.hashCode) +
|
||||
@ -137,13 +142,14 @@ class SystemConfigFFmpegDto {
|
||||
(twoPass.hashCode);
|
||||
|
||||
@override
|
||||
String toString() => 'SystemConfigFFmpegDto[accel=$accel, accelDecode=$accelDecode, acceptedAudioCodecs=$acceptedAudioCodecs, acceptedVideoCodecs=$acceptedVideoCodecs, bframes=$bframes, cqMode=$cqMode, crf=$crf, gopSize=$gopSize, maxBitrate=$maxBitrate, npl=$npl, preferredHwDevice=$preferredHwDevice, preset=$preset, refs=$refs, targetAudioCodec=$targetAudioCodec, targetResolution=$targetResolution, targetVideoCodec=$targetVideoCodec, temporalAQ=$temporalAQ, threads=$threads, tonemap=$tonemap, transcode=$transcode, twoPass=$twoPass]';
|
||||
String toString() => 'SystemConfigFFmpegDto[accel=$accel, accelDecode=$accelDecode, acceptedAudioCodecs=$acceptedAudioCodecs, acceptedContainers=$acceptedContainers, acceptedVideoCodecs=$acceptedVideoCodecs, bframes=$bframes, cqMode=$cqMode, crf=$crf, gopSize=$gopSize, maxBitrate=$maxBitrate, npl=$npl, preferredHwDevice=$preferredHwDevice, preset=$preset, refs=$refs, targetAudioCodec=$targetAudioCodec, targetResolution=$targetResolution, targetVideoCodec=$targetVideoCodec, temporalAQ=$temporalAQ, threads=$threads, tonemap=$tonemap, transcode=$transcode, twoPass=$twoPass]';
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final json = <String, dynamic>{};
|
||||
json[r'accel'] = this.accel;
|
||||
json[r'accelDecode'] = this.accelDecode;
|
||||
json[r'acceptedAudioCodecs'] = this.acceptedAudioCodecs;
|
||||
json[r'acceptedContainers'] = this.acceptedContainers;
|
||||
json[r'acceptedVideoCodecs'] = this.acceptedVideoCodecs;
|
||||
json[r'bframes'] = this.bframes;
|
||||
json[r'cqMode'] = this.cqMode;
|
||||
@ -176,6 +182,7 @@ class SystemConfigFFmpegDto {
|
||||
accel: TranscodeHWAccel.fromJson(json[r'accel'])!,
|
||||
accelDecode: mapValueOfType<bool>(json, r'accelDecode')!,
|
||||
acceptedAudioCodecs: AudioCodec.listFromJson(json[r'acceptedAudioCodecs']),
|
||||
acceptedContainers: VideoContainer.listFromJson(json[r'acceptedContainers']),
|
||||
acceptedVideoCodecs: VideoCodec.listFromJson(json[r'acceptedVideoCodecs']),
|
||||
bframes: mapValueOfType<int>(json, r'bframes')!,
|
||||
cqMode: CQMode.fromJson(json[r'cqMode'])!,
|
||||
@ -244,6 +251,7 @@ class SystemConfigFFmpegDto {
|
||||
'accel',
|
||||
'accelDecode',
|
||||
'acceptedAudioCodecs',
|
||||
'acceptedContainers',
|
||||
'acceptedVideoCodecs',
|
||||
'bframes',
|
||||
'cqMode',
|
||||
|
91
mobile/openapi/lib/model/video_container.dart
generated
Normal file
91
mobile/openapi/lib/model/video_container.dart
generated
Normal file
@ -0,0 +1,91 @@
|
||||
//
|
||||
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
||||
//
|
||||
// @dart=2.18
|
||||
|
||||
// ignore_for_file: unused_element, unused_import
|
||||
// ignore_for_file: always_put_required_named_parameters_first
|
||||
// ignore_for_file: constant_identifier_names
|
||||
// ignore_for_file: lines_longer_than_80_chars
|
||||
|
||||
part of openapi.api;
|
||||
|
||||
|
||||
class VideoContainer {
|
||||
/// Instantiate a new enum with the provided [value].
|
||||
const VideoContainer._(this.value);
|
||||
|
||||
/// The underlying value of this enum member.
|
||||
final String value;
|
||||
|
||||
@override
|
||||
String toString() => value;
|
||||
|
||||
String toJson() => value;
|
||||
|
||||
static const mov = VideoContainer._(r'mov');
|
||||
static const mp4 = VideoContainer._(r'mp4');
|
||||
static const ogg = VideoContainer._(r'ogg');
|
||||
static const webm = VideoContainer._(r'webm');
|
||||
|
||||
/// List of all possible values in this [enum][VideoContainer].
|
||||
static const values = <VideoContainer>[
|
||||
mov,
|
||||
mp4,
|
||||
ogg,
|
||||
webm,
|
||||
];
|
||||
|
||||
static VideoContainer? fromJson(dynamic value) => VideoContainerTypeTransformer().decode(value);
|
||||
|
||||
static List<VideoContainer> listFromJson(dynamic json, {bool growable = false,}) {
|
||||
final result = <VideoContainer>[];
|
||||
if (json is List && json.isNotEmpty) {
|
||||
for (final row in json) {
|
||||
final value = VideoContainer.fromJson(row);
|
||||
if (value != null) {
|
||||
result.add(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
return result.toList(growable: growable);
|
||||
}
|
||||
}
|
||||
|
||||
/// Transformation class that can [encode] an instance of [VideoContainer] to String,
|
||||
/// and [decode] dynamic data back to [VideoContainer].
|
||||
class VideoContainerTypeTransformer {
|
||||
factory VideoContainerTypeTransformer() => _instance ??= const VideoContainerTypeTransformer._();
|
||||
|
||||
const VideoContainerTypeTransformer._();
|
||||
|
||||
String encode(VideoContainer data) => data.value;
|
||||
|
||||
/// Decodes a [dynamic value][data] to a VideoContainer.
|
||||
///
|
||||
/// If [allowNull] is true and the [dynamic value][data] cannot be decoded successfully,
|
||||
/// then null is returned. However, if [allowNull] is false and the [dynamic value][data]
|
||||
/// cannot be decoded successfully, then an [UnimplementedError] is thrown.
|
||||
///
|
||||
/// The [allowNull] is very handy when an API changes and a new enum value is added or removed,
|
||||
/// and users are still using an old app with the old code.
|
||||
VideoContainer? decode(dynamic data, {bool allowNull = true}) {
|
||||
if (data != null) {
|
||||
switch (data) {
|
||||
case r'mov': return VideoContainer.mov;
|
||||
case r'mp4': return VideoContainer.mp4;
|
||||
case r'ogg': return VideoContainer.ogg;
|
||||
case r'webm': return VideoContainer.webm;
|
||||
default:
|
||||
if (!allowNull) {
|
||||
throw ArgumentError('Unknown enum value to decode: $data');
|
||||
}
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/// Singleton [VideoContainerTypeTransformer] instance.
|
||||
static VideoContainerTypeTransformer? _instance;
|
||||
}
|
||||
|
Reference in New Issue
Block a user