diff --git a/docs/source/how_to/authentication_how_to.md b/docs/source/how_to/authentication_how_to.md index a9ecc3f..3363c85 100644 --- a/docs/source/how_to/authentication_how_to.md +++ b/docs/source/how_to/authentication_how_to.md @@ -141,6 +141,8 @@ When using the Auto Archiver PyPI package, or running locally, you will need add See the [bgutil-ytdlp-pot-provider](https://github.com/Brainicism/bgutil-ytdlp-pot-provider?tab=readme-ov-file#a-http-server-option) documentation for more details. +⚠️WARNING⚠️: This will add the server scripts to the home directory of wherever this is running. + - You can set the config option `"po_token_provider": true` under the `GenericExtractor` section of your config to "script" to enable the token generation script process locally. - Or you can run the bgutil-ytdlp-pot-provider server separately using their Docker image. diff --git a/src/auto_archiver/modules/generic_extractor/__manifest__.py b/src/auto_archiver/modules/generic_extractor/__manifest__.py index 227c186..f34151c 100644 --- a/src/auto_archiver/modules/generic_extractor/__manifest__.py +++ b/src/auto_archiver/modules/generic_extractor/__manifest__.py @@ -75,7 +75,7 @@ If you are having issues with the extractor, you can review the version of `yt-d "help": "Use to limit the number of videos to download when a channel or long page is being extracted. 'inf' means no limit.", }, "bguils_po_token_method": { - "default": "auto", + "default": "default", "help": "Set up a Proof of origin token provider. This process has additional requirements. See [authentication](https://auto-archiver.readthedocs.io/en/latest/how_to/authentication_how_to.html) for more information.", "choices": ["default", "script", "disabled"], },