ytptube/app/postprocessors/__init__.py
2025-09-24 19:23:57 +03:00

10 lines
270 B
Python

# flake8: noqa: F401
from yt_dlp.globals import postprocessors
from .nfo_maker import NFOMakerPP
_ytptube_pps = {name: value for name, value in globals().items() if name.endswith("PP")}
postprocessors.value.update(_ytptube_pps)
__all__ = list(_ytptube_pps.values())