r/nextcloud: Configure Memories app
The [Memories] app for Nextcloud provides a better user interface and more features than the built-in Photos app. The latter seems to be somewhat broken recently (timeline stops in June 2024, even though there are more recent photos available), so we're trying out Memories (and Recognize for facial recognition). [Memories]: https://memories.galleryfrigate-exporter
parent
5ab0bcd5bf
commit
265aa074aa
|
@ -61,9 +61,19 @@ $CONFIG = array (
|
||||||
'memcache.distributed' => '\\OC\\Memcache\\Redis',
|
'memcache.distributed' => '\\OC\\Memcache\\Redis',
|
||||||
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
||||||
'redis' =>
|
'redis' =>
|
||||||
array (
|
array (
|
||||||
'host' => 'localhost',
|
'host' => 'localhost',
|
||||||
'port' => 6379,
|
'port' => 6379,
|
||||||
'timeout' => 0.0,
|
'timeout' => 0.0,
|
||||||
),
|
),
|
||||||
|
'memories.db.triggers.fcu' => true,
|
||||||
|
'memories.exiftool_no_local' => true,
|
||||||
|
'memories.vod.path' => '/var/lib/nextcloud/apps/memories/bin-ext/go-vod-amd64',
|
||||||
|
'memories.vod.ffmpeg' => '/usr/bin/ffmpeg',
|
||||||
|
'memories.vod.ffprobe' => '/usr/bin/ffprobe',
|
||||||
|
'enabledPreviewProviders' =>
|
||||||
|
array (
|
||||||
|
0 => 'OC\\Preview\\Image',
|
||||||
|
1 => 'OC\\Preview\\Movie',
|
||||||
|
),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue