diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2024-11-22 19:25:23 +0100 |
---|---|---|
committer | Bnyro <bnyro@tutanota.com> | 2024-11-24 11:56:12 +0100 |
commit | 0253c10b522fe2e8206db78e37066771ce90cf92 (patch) | |
tree | 43bae14fc4b48397e5ba7c0fee27f6dadd9aa155 /searx/settings.yml | |
parent | f20a7632f1421eaea094b630a677f68e7a0808c7 (diff) | |
download | searxng-0253c10b522fe2e8206db78e37066771ce90cf92.tar.gz searxng-0253c10b522fe2e8206db78e37066771ce90cf92.zip |
[feat] engine: add adobe stock video and audio engines
The engine has been revised; there is now the option ``adobe_content_types``
with which it is possible to configure engines for video and audio from the
adobe stock. BTW this patch adds documentation to the engine.
To test all three engines in one use a search term like::
!asi !asv !asa sound
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/settings.yml')
-rw-r--r-- | searx/settings.yml | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 0084db902..d27172aef 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -327,9 +327,32 @@ engines: - name: adobe stock engine: adobe_stock - # available search orders: 'relevant', 'featured', 'creation', 'nb_downloads' - # adobe_order: relevance - shortcut: as + shortcut: asi + categories: ["images"] + # https://docs.searxng.org/dev/engines/online/adobe_stock.html + adobe_order: relevance + adobe_content_types: ["photo", "illustration", "zip_vector", "template", "3d", "image"] + timeout: 6 + disabled: true + + - name: adobe stock video + engine: adobe_stock + shortcut: asv + network: adobe stock + categories: ["videos"] + adobe_order: relevance + adobe_content_types: ["video"] + timeout: 6 + disabled: true + + - name: adobe stock audio + engine: adobe_stock + shortcut: asa + network: adobe stock + categories: ["music"] + adobe_order: relevance + adobe_content_types: ["audio"] + timeout: 6 disabled: true - name: alpine linux packages |