aboutsummaryrefslogtreecommitdiff
path: root/youtube_dlc/postprocessor/__init__.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan@gmail.com>2021-01-26 15:50:20 +0530
committerpukkandan <pukkandan@gmail.com>2021-01-26 16:14:31 +0530
commit5bfa48620542d9ee34958d7c96aa45465b058fbd (patch)
tree60220c27fb40122909c00d43a59cd08c2edf661b /youtube_dlc/postprocessor/__init__.py
parent9882064024abdad7d37771459e9df11bcdec1115 (diff)
Add option `--parse-metadata`
* The fields extracted by this can be used in `--output` * Deprecated `--metadata-from-title` :ci skip dl
Diffstat (limited to 'youtube_dlc/postprocessor/__init__.py')
-rw-r--r--youtube_dlc/postprocessor/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dlc/postprocessor/__init__.py b/youtube_dlc/postprocessor/__init__.py
index 840a83b0e..c5aa925c6 100644
--- a/youtube_dlc/postprocessor/__init__.py
+++ b/youtube_dlc/postprocessor/__init__.py
@@ -16,7 +16,8 @@ from .ffmpeg import (
)
from .xattrpp import XAttrMetadataPP
from .execafterdownload import ExecAfterDownloadPP
-from .metadatafromtitle import MetadataFromTitlePP
+from .metadatafromfield import MetadataFromFieldPP
+from .metadatafromfield import MetadataFromTitlePP
from .movefilesafterdownload import MoveFilesAfterDownloadPP
from .sponskrub import SponSkrubPP
@@ -39,6 +40,7 @@ __all__ = [
'FFmpegSubtitlesConvertorPP',
'FFmpegVideoConvertorPP',
'FFmpegVideoRemuxerPP',
+ 'MetadataFromFieldPP',
'MetadataFromTitlePP',
'MoveFilesAfterDownloadPP',
'SponSkrubPP',