mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31: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:
parent
a94e45260e
commit
def82a7354
1 changed files with 13 additions and 4 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue