mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-04-04 06:00:15 -05:00

- Adds `--no-plugin-dirs` to disable plugin loading - `--plugin-dirs` now supports post-processors Authored by: coletdjnz, Grub4K, pukkandan
12 lines
247 B
Python
12 lines
247 B
Python
from yt_dlp.extractor.common import InfoExtractor
|
|
|
|
|
|
class NormalPluginIE(InfoExtractor):
|
|
_VALID_URL = 'normalpluginie'
|
|
REPLACED = False
|
|
|
|
|
|
class _IgnoreUnderscorePluginIE(InfoExtractor):
|
|
_VALID_URL = 'ignoreunderscorepluginie'
|
|
pass
|