Merge branch 'mp3'
This commit is contained in:
commit
2e24e6bd17
1 changed files with 2 additions and 1 deletions
|
@ -11,6 +11,7 @@ from ..compat import (
|
||||||
compat_urlretrieve,
|
compat_urlretrieve,
|
||||||
)
|
)
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
|
determine_ext,
|
||||||
check_executable,
|
check_executable,
|
||||||
encodeFilename,
|
encodeFilename,
|
||||||
PostProcessingError,
|
PostProcessingError,
|
||||||
|
@ -27,7 +28,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor):
|
||||||
def run(self, info):
|
def run(self, info):
|
||||||
filename = info['filepath']
|
filename = info['filepath']
|
||||||
temp_filename = prepend_extension(filename, 'temp')
|
temp_filename = prepend_extension(filename, 'temp')
|
||||||
temp_thumbnail = prepend_extension(filename, 'thumb')
|
temp_thumbnail = filename + '.' + determine_ext(info['thumbnail'])
|
||||||
|
|
||||||
if not info.get('thumbnail'):
|
if not info.get('thumbnail'):
|
||||||
raise EmbedThumbnailPPError('Thumbnail was not found. Nothing to do.')
|
raise EmbedThumbnailPPError('Thumbnail was not found. Nothing to do.')
|
||||||
|
|
Loading…
Reference in a new issue