From b54937863aa6d8fbc4a55ddd2672009a2e95a4f6 Mon Sep 17 00:00:00 2001 From: vayalil <36435907+vayalil@users.noreply.github.com> Date: Sat, 17 Feb 2018 09:07:07 +1100 Subject: [PATCH] Add files via upload --- youtube_dl/postprocessor/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/youtube_dl/postprocessor/__init__.py b/youtube_dl/postprocessor/__init__.py index 3ea518399..6b7e08daf 100644 --- a/youtube_dl/postprocessor/__init__.py +++ b/youtube_dl/postprocessor/__init__.py @@ -16,6 +16,7 @@ from .ffmpeg import ( from .xattrpp import XAttrMetadataPP from .execafterdownload import ExecAfterDownloadPP from .metadatafromtitle import MetadataFromTitlePP +from .metadatafromuser import MetadataFromUserPP def get_postprocessor(key): @@ -37,4 +38,5 @@ __all__ = [ 'FFmpegVideoConvertorPP', 'MetadataFromTitlePP', 'XAttrMetadataPP', + 'MetadataFromUserPP' ]