diff options
author | pulpe <Pulpan3@gmail.com> | 2015-04-24 09:25:44 +0200 |
---|---|---|
committer | pulpe <Pulpan3@gmail.com> | 2015-04-24 09:25:44 +0200 |
commit | 09aa111918c35cc091253d06b4de0b6f396b8e80 (patch) | |
tree | 119e56c4364477ca9904ec2c8f68352879cb0eae /youtube_dl/postprocessor/__init__.py | |
parent | a9b0d4e1f4936d93f277f098495eb4d5b770056f (diff) | |
parent | 10fb7710e85a240cc4bd065b98fd3f5a0c3d10ca (diff) | |
download | hypervideo-pre-09aa111918c35cc091253d06b4de0b6f396b8e80.tar.lz hypervideo-pre-09aa111918c35cc091253d06b4de0b6f396b8e80.tar.xz hypervideo-pre-09aa111918c35cc091253d06b4de0b6f396b8e80.zip |
Merge branch 'embedthumb'
Diffstat (limited to 'youtube_dl/postprocessor/__init__.py')
-rw-r--r-- | youtube_dl/postprocessor/__init__.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/youtube_dl/postprocessor/__init__.py b/youtube_dl/postprocessor/__init__.py index f39acadce..0d8ef6ca2 100644 --- a/youtube_dl/postprocessor/__init__.py +++ b/youtube_dl/postprocessor/__init__.py @@ -1,9 +1,8 @@ from __future__ import unicode_literals -from .atomicparsley import AtomicParsleyPP +from .embedthumbnail import EmbedThumbnailPP from .ffmpeg import ( FFmpegPostProcessor, - FFmpegAudioFixPP, FFmpegEmbedSubtitlePP, FFmpegExtractAudioPP, FFmpegFixupStretchedPP, @@ -23,9 +22,8 @@ def get_postprocessor(key): __all__ = [ - 'AtomicParsleyPP', + 'EmbedThumbnailPP', 'ExecAfterDownloadPP', - 'FFmpegAudioFixPP', 'FFmpegEmbedSubtitlePP', 'FFmpegExtractAudioPP', 'FFmpegFixupM4aPP', |