mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
chore(server): change transcode default to accept all supported audio codecs (#7283)
* change transcode defaults * don't untick accepted audio codecs * no need to change the transcode policy * fix tests * remove log
This commit is contained in:
parent
7c34d0595e
commit
397570ad1a
5 changed files with 50 additions and 43 deletions
|
|
@ -33,7 +33,7 @@ export const defaults = Object.freeze<SystemConfig>({
|
|||
targetVideoCodec: VideoCodec.H264,
|
||||
acceptedVideoCodecs: [VideoCodec.H264],
|
||||
targetAudioCodec: AudioCodec.AAC,
|
||||
acceptedAudioCodecs: [AudioCodec.AAC],
|
||||
acceptedAudioCodecs: [AudioCodec.AAC, AudioCodec.MP3, AudioCodec.LIBOPUS],
|
||||
targetResolution: '720',
|
||||
maxBitrate: '0',
|
||||
bframes: -1,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue