diff options
author | pukkandan <pukkandan@users.noreply.github.com> | 2021-01-23 17:48:12 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-23 17:53:17 +0530 |
commit | 0202b52a0c0a15da6073a122aae7ed6693e18f01 (patch) | |
tree | 46a819bbb1c97649216ff0a040468a7d0d73ef29 /youtube_dlc/postprocessor/__init__.py | |
parent | b8f6bbe68a6ff1f733a8d71d991b03008dfaf621 (diff) | |
download | hypervideo-pre-0202b52a0c0a15da6073a122aae7ed6693e18f01.tar.lz hypervideo-pre-0202b52a0c0a15da6073a122aae7ed6693e18f01.tar.xz hypervideo-pre-0202b52a0c0a15da6073a122aae7ed6693e18f01.zip |
#29 New option `-P`/`--paths` to give different paths for different types of files
Syntax: `-P "type:path" -P "type:path"`
Types: home, temp, description, annotation, subtitle, infojson, thumbnail
Diffstat (limited to 'youtube_dlc/postprocessor/__init__.py')
-rw-r--r-- | youtube_dlc/postprocessor/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dlc/postprocessor/__init__.py b/youtube_dlc/postprocessor/__init__.py index e160909a7..840a83b0e 100644 --- a/youtube_dlc/postprocessor/__init__.py +++ b/youtube_dlc/postprocessor/__init__.py @@ -17,6 +17,7 @@ from .ffmpeg import ( from .xattrpp import XAttrMetadataPP from .execafterdownload import ExecAfterDownloadPP from .metadatafromtitle import MetadataFromTitlePP +from .movefilesafterdownload import MoveFilesAfterDownloadPP from .sponskrub import SponSkrubPP @@ -39,6 +40,7 @@ __all__ = [ 'FFmpegVideoConvertorPP', 'FFmpegVideoRemuxerPP', 'MetadataFromTitlePP', + 'MoveFilesAfterDownloadPP', 'SponSkrubPP', 'XAttrMetadataPP', ] |