diff options
author | pukkandan <pukkandan@gmail.com> | 2021-01-24 19:10:02 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-24 20:24:07 +0530 |
commit | f74980cbaebaf3c4ea89d1b257424a50545991d9 (patch) | |
tree | 896c00839bf145432303e745e21dd7ad6935b938 /README.md | |
parent | c571435f9c22129c3663b738ca7b577ee05eec97 (diff) |
Plugin support
Extractor plugins are loaded from <root-dir>/ytdlp_plugins/extractor/__init__.py
Inspired by https://github.com/un-def/dl-plus
:ci skip dl
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -40,6 +40,7 @@ This is a fork of [youtube-dlc](https://github.com/blackjack4494/yt-dlc) which i * [Filtering Formats](#filtering-formats) * [Sorting Formats](#sorting-formats) * [Format Selection examples](#format-selection-examples) +* [PLUGINS](#plugins) * [MORE](#more) @@ -1082,9 +1083,11 @@ $ youtube-dlc -S 'res:720,fps' $ youtube-dlc -S '+res:480,codec,br' ``` +# PLUGINS +Plugins are loaded from `<root-dir>/ytdlp_plugins/<type>/__init__.py`. Currently only `extractor` plugins are supported. Support for `downloader` and `postprocessor` plugins may be added in the future. See [ytdlp_plugins](ytdlp_plugins) for example. - +**Note**: `<root-dir>` is the directory of the binary (`<root-dir>/youtube-dlc`), or the root directory of the module if you are running directly from source-code ((`<root dir>/youtube_dlc/__main__.py`) # MORE For FAQ, Developer Instructions etc., see the [original README](https://github.com/ytdl-org/youtube-dl) |