1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-28 22:51:59 +00:00

docs: config-file.md update config to current (v1.98) state (#7808)

* docs: config-file.md update config to current (v1.98) state

* fix format

---------

Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
This commit is contained in:
Slavik 2024-03-11 23:46:42 -04:00 committed by GitHub
parent a94e45260e
commit def82a7354
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,7 +14,9 @@ The default configuration looks like this:
"threads": 0,
"preset": "ultrafast",
"targetVideoCodec": "h264",
"acceptedVideoCodecs": ["h264"],
"targetAudioCodec": "aac",
"acceptedAudioCodecs": ["aac", "mp3", "libopus"],
"targetResolution": "720",
"maxBitrate": "0",
"bframes": -1,
@ -24,6 +26,7 @@ The default configuration looks like this:
"temporalAQ": false,
"cqMode": "auto",
"twoPass": false,
"preferredHwDevice": "auto",
"transcode": "required",
"tonemap": "hable",
"accel": "disabled"
@ -38,7 +41,7 @@ The default configuration looks like this:
"metadataExtraction": {
"concurrency": 5
},
"recognizeFaces": {
"faceDetection": {
"concurrency": 2
},
"search": {
@ -50,9 +53,6 @@ The default configuration looks like this:
"library": {
"concurrency": 5
},
"storageTemplateMigration": {
"concurrency": 5
},
"migration": {
"concurrency": 5
},
@ -110,6 +110,8 @@ The default configuration looks like this:
"enabled": true
},
"storageTemplate": {
"enabled": false,
"hashVerificationEnabled": true,
"template": "{{y}}/{{y}}-{{MM}}-{{dd}}/{{filename}}"
},
"thumbnail": {
@ -141,6 +143,13 @@ The default configuration looks like this:
"usePolling": false,
"interval": 10000
}
},
"server": {
"externalDomain": "",
"loginPageMessage": ""
},
"user": {
"deleteDelay": 7
}
}
```