mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-04-04 14:10:17 -05:00

- Adds `--no-plugin-dirs` to disable plugin loading - `--plugin-dirs` now supports post-processors Authored by: coletdjnz, Grub4K, pukkandan
14 lines
216 B
Python
14 lines
216 B
Python
from yt_dlp.extractor.common import InfoExtractor
|
|
|
|
|
|
class IgnoreNotInAllPluginIE(InfoExtractor):
|
|
pass
|
|
|
|
|
|
class InAllPluginIE(InfoExtractor):
|
|
_VALID_URL = 'inallpluginie'
|
|
pass
|
|
|
|
|
|
__all__ = ['InAllPluginIE']
|