diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-02-28 14:43:24 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2015-02-28 14:43:24 +0100 |
commit | e9fade72f347cbcce779ff176d516467a425b43a (patch) | |
tree | ef5ee55d250ec1969b95ba51315f53e40cdd76e3 /youtube_dl/postprocessor/__init__.py | |
parent | 0f2c0d335b14ba1596e6608db7a6f29a0d9e1c86 (diff) |
Add postprocessor for converting subtitles (closes #4954)
Diffstat (limited to 'youtube_dl/postprocessor/__init__.py')
-rw-r--r-- | youtube_dl/postprocessor/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/postprocessor/__init__.py b/youtube_dl/postprocessor/__init__.py index 0ffbca258..708df3dd4 100644 --- a/youtube_dl/postprocessor/__init__.py +++ b/youtube_dl/postprocessor/__init__.py @@ -11,6 +11,7 @@ from .ffmpeg import ( FFmpegMergerPP, FFmpegMetadataPP, FFmpegVideoConvertorPP, + FFmpegSubtitlesConvertorPP, ) from .xattrpp import XAttrMetadataPP from .execafterdownload import ExecAfterDownloadPP @@ -31,6 +32,7 @@ __all__ = [ 'FFmpegMergerPP', 'FFmpegMetadataPP', 'FFmpegPostProcessor', + 'FFmpegSubtitlesConvertorPP', 'FFmpegVideoConvertorPP', 'XAttrMetadataPP', ] |