mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-10-15 12:48:37 +09:00
Added progress hook updates for postprocessing
This commit is contained in:
@@ -33,6 +33,7 @@ class PostProcessor(object):
|
||||
|
||||
def __init__(self, downloader=None):
|
||||
self._downloader = downloader
|
||||
self._progress_hooks = []
|
||||
|
||||
def set_downloader(self, downloader):
|
||||
"""Sets the downloader for this PP."""
|
||||
@@ -64,6 +65,15 @@ class PostProcessor(object):
|
||||
def _configuration_args(self, default=[]):
|
||||
return cli_configuration_args(self._downloader.params, 'postprocessor_args', default)
|
||||
|
||||
def _hook_progress(self, status):
|
||||
for ph in self._progress_hooks:
|
||||
ph(status)
|
||||
|
||||
def add_progress_hook(self, ph):
|
||||
# See YoutubeDl.py (search for progress_hooks) for a description of
|
||||
# this interface
|
||||
self._progress_hooks.append(ph)
|
||||
|
||||
|
||||
class AudioConversionError(PostProcessingError):
|
||||
pass
|
||||
|
@@ -127,4 +127,12 @@ class EmbedThumbnailPP(FFmpegPostProcessor):
|
||||
else:
|
||||
raise EmbedThumbnailPPError('Only mp3 and m4a/mp4 are supported for thumbnail embedding for now.')
|
||||
|
||||
fsize = os.path.getsize(encodeFilename(filename))
|
||||
self._hook_progress({
|
||||
'total_bytes': fsize,
|
||||
'filename': encodeFilename(filename),
|
||||
'status': 'postprocessed',
|
||||
'postprocessor': self.__class__.__name__
|
||||
})
|
||||
|
||||
return [], info
|
||||
|
@@ -27,5 +27,9 @@ class ExecAfterDownloadPP(PostProcessor):
|
||||
if retCode != 0:
|
||||
raise PostProcessingError(
|
||||
'Command returned error code %d' % retCode)
|
||||
self._hook_progress({
|
||||
'status': 'postprocessed',
|
||||
'postprocessor': self.__class__.__name__
|
||||
})
|
||||
|
||||
return [], information
|
||||
|
@@ -349,6 +349,14 @@ class FFmpegExtractAudioPP(FFmpegPostProcessor):
|
||||
new_path, time.time(), information['filetime'],
|
||||
errnote='Cannot update utime of audio file')
|
||||
|
||||
fsize = os.path.getsize(new_path)
|
||||
self._hook_progress({
|
||||
'total_bytes': fsize,
|
||||
'filename': new_path,
|
||||
'status': 'postprocessed',
|
||||
'postprocessor': self.__class__.__name__
|
||||
})
|
||||
|
||||
return [path], information
|
||||
|
||||
|
||||
@@ -372,6 +380,13 @@ class FFmpegVideoConvertorPP(FFmpegPostProcessor):
|
||||
information['filepath'] = outpath
|
||||
information['format'] = self._preferedformat
|
||||
information['ext'] = self._preferedformat
|
||||
fsize = os.path.getsize(outpath)
|
||||
self._hook_progress({
|
||||
'total_bytes': fsize,
|
||||
'filename': outpath,
|
||||
'status': 'postprocessed',
|
||||
'postprocessor': self.__class__.__name__
|
||||
})
|
||||
return [path], information
|
||||
|
||||
|
||||
@@ -429,6 +444,13 @@ class FFmpegEmbedSubtitlePP(FFmpegPostProcessor):
|
||||
self.run_ffmpeg_multiple_files(input_files, temp_filename, opts)
|
||||
os.remove(encodeFilename(filename))
|
||||
os.rename(encodeFilename(temp_filename), encodeFilename(filename))
|
||||
fsize = os.path.getsize(encodeFilename(filename))
|
||||
self._hook_progress({
|
||||
'total_bytes': fsize,
|
||||
'filename': encodeFilename(filename),
|
||||
'status': 'postprocessed',
|
||||
'postprocessor': self.__class__.__name__
|
||||
})
|
||||
|
||||
return sub_filenames, information
|
||||
|
||||
@@ -514,6 +536,13 @@ class FFmpegMetadataPP(FFmpegPostProcessor):
|
||||
os.remove(metadata_filename)
|
||||
os.remove(encodeFilename(filename))
|
||||
os.rename(encodeFilename(temp_filename), encodeFilename(filename))
|
||||
fsize = os.path.getsize(encodeFilename(filename))
|
||||
self._hook_progress({
|
||||
'total_bytes': fsize,
|
||||
'filename': encodeFilename(filename),
|
||||
'status': 'postprocessed',
|
||||
'postprocessor': self.__class__.__name__
|
||||
})
|
||||
return [], info
|
||||
|
||||
|
||||
@@ -525,6 +554,13 @@ class FFmpegMergerPP(FFmpegPostProcessor):
|
||||
self._downloader.to_screen('[ffmpeg] Merging formats into "%s"' % filename)
|
||||
self.run_ffmpeg_multiple_files(info['__files_to_merge'], temp_filename, args)
|
||||
os.rename(encodeFilename(temp_filename), encodeFilename(filename))
|
||||
fsize = os.path.getsize(encodeFilename(filename))
|
||||
self._hook_progress({
|
||||
'total_bytes': fsize,
|
||||
'filename': encodeFilename(filename),
|
||||
'status': 'postprocessed',
|
||||
'postprocessor': self.__class__.__name__
|
||||
})
|
||||
return info['__files_to_merge'], info
|
||||
|
||||
def can_merge(self):
|
||||
@@ -560,6 +596,13 @@ class FFmpegFixupStretchedPP(FFmpegPostProcessor):
|
||||
|
||||
os.remove(encodeFilename(filename))
|
||||
os.rename(encodeFilename(temp_filename), encodeFilename(filename))
|
||||
fsize = os.path.getsize(encodeFilename(filename))
|
||||
self._hook_progress({
|
||||
'total_bytes': fsize,
|
||||
'filename': encodeFilename(filename),
|
||||
'status': 'postprocessed',
|
||||
'postprocessor': self.__class__.__name__
|
||||
})
|
||||
|
||||
return [], info
|
||||
|
||||
@@ -578,6 +621,13 @@ class FFmpegFixupM4aPP(FFmpegPostProcessor):
|
||||
|
||||
os.remove(encodeFilename(filename))
|
||||
os.rename(encodeFilename(temp_filename), encodeFilename(filename))
|
||||
fsize = os.path.getsize(encodeFilename(filename))
|
||||
self._hook_progress({
|
||||
'total_bytes': fsize,
|
||||
'filename': encodeFilename(filename),
|
||||
'status': 'postprocessed',
|
||||
'postprocessor': self.__class__.__name__
|
||||
})
|
||||
|
||||
return [], info
|
||||
|
||||
@@ -594,6 +644,14 @@ class FFmpegFixupM3u8PP(FFmpegPostProcessor):
|
||||
|
||||
os.remove(encodeFilename(filename))
|
||||
os.rename(encodeFilename(temp_filename), encodeFilename(filename))
|
||||
|
||||
fsize = os.path.getsize(encodeFilename(filename))
|
||||
self._hook_progress({
|
||||
'total_bytes': fsize,
|
||||
'filename': encodeFilename(filename),
|
||||
'status': 'postprocessed',
|
||||
'postprocessor': self.__class__.__name__
|
||||
})
|
||||
return [], info
|
||||
|
||||
|
||||
@@ -657,4 +715,9 @@ class FFmpegSubtitlesConvertorPP(FFmpegPostProcessor):
|
||||
'data': f.read(),
|
||||
}
|
||||
|
||||
self._hook_progress({
|
||||
'status': 'postprocessed',
|
||||
'postprocessor': self.__class__.__name__
|
||||
})
|
||||
|
||||
return sub_filenames, info
|
||||
|
@@ -44,5 +44,9 @@ class MetadataFromTitlePP(PostProcessor):
|
||||
self._downloader.to_screen(
|
||||
'[fromtitle] parsed %s: %s'
|
||||
% (attribute, value if value is not None else 'NA'))
|
||||
self._hook_progress({
|
||||
'status': 'postprocessed',
|
||||
'postprocessor': self.__class__.__name__
|
||||
})
|
||||
|
||||
return [], info
|
||||
|
@@ -55,6 +55,11 @@ class XAttrMetadataPP(PostProcessor):
|
||||
write_xattr(filename, xattrname, byte_value)
|
||||
num_written += 1
|
||||
|
||||
self._hook_progress({
|
||||
'status': 'postprocessed',
|
||||
'postprocessor': self.__class__.__name__
|
||||
})
|
||||
|
||||
return [], info
|
||||
|
||||
except XAttrUnavailableError as e:
|
||||
|
Reference in New Issue
Block a user