Implemented --exec option.
[youtube-dl] / youtube_dl / postprocessor / __init__.py
index 08e6ddd00cbfe5691fb14943d6b2217748e96398..59ab49e6d6d7d0acd4c26a5cfe4966f1b7bc3ad1 100644 (file)
@@ -9,6 +9,7 @@ from .ffmpeg import (
     FFmpegEmbedSubtitlePP,
 )
 from .xattrpp import XAttrMetadataPP
+from .execafterdownload import ExecAfterDownload
 
 __all__ = [
     'AtomicParsleyPP',
@@ -19,4 +20,5 @@ __all__ = [
     'FFmpegExtractAudioPP',
     'FFmpegEmbedSubtitlePP',
     'XAttrMetadataPP',
+    'ExecAfterDownload',
 ]