mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-04-30 07:46:38 +02: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
|