1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-04 12:15:02 -04:00

[cleanup] minor fixes

This commit is contained in:
pukkandan
2021-11-10 04:14:42 +05:30
parent 59a7a13ef9
commit c586f9e8de
6 changed files with 18 additions and 16 deletions

View File

@@ -2,6 +2,7 @@
from ..utils import load_plugins
from .common import PostProcessor
from .embedthumbnail import EmbedThumbnailPP
from .exec import ExecPP, ExecAfterDownloadPP
from .ffmpeg import (
@@ -39,5 +40,5 @@ def get_postprocessor(key):
return globals()[key + 'PP']
__all__ = [name for name in globals().keys() if name.endswith('IE')]
__all__.append('FFmpegPostProcessor')
__all__ = [name for name in globals().keys() if name.endswith('PP')]
__all__.extend(('PostProcessor', 'FFmpegPostProcessor'))