From dedaa83e205964257974b011e15d1045dbc8583e Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 30 Mar 2022 17:51:40 +0700 Subject: [PATCH] update FAQ, note to import transcode quality --- FAQ.md | 3 +++ Settings.md | 1 + 2 files changed, 4 insertions(+) diff --git a/FAQ.md b/FAQ.md index 3491939..7d5c9ee 100644 --- a/FAQ.md +++ b/FAQ.md @@ -29,3 +29,6 @@ So Docker is the only supported installation method. If you don't have any exper ## 4. Finetuning Elasticsearch A minimal configuration of Elasticsearch (ES) is provided in the example docker-compose.yml file. ES is highly configurable and very interesting to learn more about. Refer to the [documentation](https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html) if you want to get into it. + +## 5. Advanced Authentication +If you like to use things like SSO, LDAP or 2FA to login, consider using something like Authelia as a reverse proxy so this project can focus on the core task. Tube Archivist has a *remember me* checkbox at login to extend your sessions lifetime in your browser. diff --git a/Settings.md b/Settings.md index e126069..8a66fdf 100644 --- a/Settings.md +++ b/Settings.md @@ -103,6 +103,7 @@ Detect the YouTube ID from filename, this accepts the default yt-dlp naming conv ### Some notes: - This will **consume** the files you put into the import folder: Files will get converted to mp4 if needed (this might take a long time...) and moved to the archive, *.json* files will get deleted upon completion to avoid having duplicates on the next run. +- For best file transcoding quality, convert your media files with desired settings first before importing (#138). - There should be no subdirectories added to */cache/import*, only video files. If your existing video library has video files inside subdirectories, you can get all the files into one directory by running `find ./ -mindepth 2 -type f -exec mv '{}' . \;` from the top-level directory of your existing video library. You can also delete any remaining empty subdirectories with `find ./ -mindepth 1 -type d -delete`. - Maybe start with a subset of your files to import to make sure everything goes well... - Follow the logs to monitor progress and errors: `docker-compose logs -f tubearchivist`.