1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-25 10:43:13 +02: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, "threads": 0,
"preset": "ultrafast", "preset": "ultrafast",
"targetVideoCodec": "h264", "targetVideoCodec": "h264",
"acceptedVideoCodecs": ["h264"],
"targetAudioCodec": "aac", "targetAudioCodec": "aac",
"acceptedAudioCodecs": ["aac", "mp3", "libopus"],
"targetResolution": "720", "targetResolution": "720",
"maxBitrate": "0", "maxBitrate": "0",
"bframes": -1, "bframes": -1,
@ -24,6 +26,7 @@ The default configuration looks like this:
"temporalAQ": false, "temporalAQ": false,
"cqMode": "auto", "cqMode": "auto",
"twoPass": false, "twoPass": false,
"preferredHwDevice": "auto",
"transcode": "required", "transcode": "required",
"tonemap": "hable", "tonemap": "hable",
"accel": "disabled" "accel": "disabled"
@ -38,7 +41,7 @@ The default configuration looks like this:
"metadataExtraction": { "metadataExtraction": {
"concurrency": 5 "concurrency": 5
}, },
"recognizeFaces": { "faceDetection": {
"concurrency": 2 "concurrency": 2
}, },
"search": { "search": {
@ -50,9 +53,6 @@ The default configuration looks like this:
"library": { "library": {
"concurrency": 5 "concurrency": 5
}, },
"storageTemplateMigration": {
"concurrency": 5
},
"migration": { "migration": {
"concurrency": 5 "concurrency": 5
}, },
@ -110,6 +110,8 @@ The default configuration looks like this:
"enabled": true "enabled": true
}, },
"storageTemplate": { "storageTemplate": {
"enabled": false,
"hashVerificationEnabled": true,
"template": "{{y}}/{{y}}-{{MM}}-{{dd}}/{{filename}}" "template": "{{y}}/{{y}}-{{MM}}-{{dd}}/{{filename}}"
}, },
"thumbnail": { "thumbnail": {
@ -141,6 +143,13 @@ The default configuration looks like this:
"usePolling": false, "usePolling": false,
"interval": 10000 "interval": 10000
} }
},
"server": {
"externalDomain": "",
"loginPageMessage": ""
},
"user": {
"deleteDelay": 7
} }
} }
``` ```