diff options
author | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-27 23:15:53 +0200 |
---|---|---|
committer | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-27 23:28:51 +0200 |
commit | b8d69f9bf5a03fd6d8b6a477f3b7ca8f10c27bda (patch) | |
tree | 6652fd8b3e89b652791167e73b293b57d0b6496b /importer/providers/v_reddit.py | |
parent | 3d54b3d91d0c175feae82c413fd0139545d46e2a (diff) | |
download | reddit-nextcloud-importer-b8d69f9bf5a03fd6d8b6a477f3b7ca8f10c27bda.tar.gz reddit-nextcloud-importer-b8d69f9bf5a03fd6d8b6a477f3b7ca8f10c27bda.tar.bz2 reddit-nextcloud-importer-b8d69f9bf5a03fd6d8b6a477f3b7ca8f10c27bda.zip |
feat: Move to gallery-dl
As it turns out there is already a project that does what I want but
better.
Diffstat (limited to 'importer/providers/v_reddit.py')
-rw-r--r-- | importer/providers/v_reddit.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/importer/providers/v_reddit.py b/importer/providers/v_reddit.py deleted file mode 100644 index 2917fee..0000000 --- a/importer/providers/v_reddit.py +++ /dev/null @@ -1,10 +0,0 @@ -from importer.providers.youtube_dl_base import YoutubeDlProviderBase - - -class VReddit(YoutubeDlProviderBase): - regex = "^.*v\\.redd\\.it.*$" - format = 'bestvideo+bestaudio/bestvideo' - _TEST = [{ - "url": "https://v.redd.it/42j6r7i8z7151", - "paths": ["source_42j6r7i8z7151.mp4"] - }] |