aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/YoutubeDL.py
diff options
context:
space:
mode:
authorIsmael Mejia <iemejia@gmail.com>2013-08-26 04:03:40 +0200
committerIsmael Mejia <iemejia@gmail.com>2013-08-28 00:33:12 +0200
commit06a401c845289344bfe8998a0acad07f79fe7818 (patch)
tree21006d0073cc901010d8793f95293bc2e5d6a2cf /youtube_dl/YoutubeDL.py
parentbd2dee6c67b837bdebdd28d10d9586129021330e (diff)
parentd4051a8e051a06ddeab905a4b5fcc7ddb70952bf (diff)
Merge branch 'master' into subtitles_rework
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rw-r--r--youtube_dl/YoutubeDL.py19
1 files changed, 9 insertions, 10 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index fa7bb1387..1fd610a6e 100644
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -221,16 +221,19 @@ class YoutubeDL(object):
def report_writesubtitles(self, sub_filename):
""" Report that the subtitles file is being written """
- self.to_screen(u'[info] Writing subtitle: ' + sub_filename)
-
- def report_existingsubtitles(self, sub_filename):
- """ Report that the subtitles file has been already written """
- self.to_screen(u'[info] Skipping existing subtitle: ' + sub_filename)
+ self.to_screen(u'[info] Writing video subtitles to: ' + sub_filename)
def report_writeinfojson(self, infofn):
""" Report that the metadata file has been written """
self.to_screen(u'[info] Video description metadata as JSON to: ' + infofn)
+ def report_file_already_downloaded(self, file_name):
+ """Report file has already been fully downloaded."""
+ try:
+ self.to_screen(u'[download] %s has already been downloaded' % file_name)
+ except (UnicodeEncodeError) as err:
+ self.to_screen(u'[download] The file has already been downloaded')
+
def increment_downloads(self):
"""Increment the ordinal that assigns a number to each file."""
self._num_downloads += 1
@@ -489,16 +492,12 @@ class YoutubeDL(object):
# that way it will silently go on when used with unsupporting IE
subtitles = info_dict['subtitles']
sub_format = self.params.get('subtitlesformat')
-
for sub_lang in subtitles.keys():
sub = subtitles[sub_lang]
if sub is None:
continue
try:
- sub_filename = filename.rsplit('.', 1)[0] + u'.' + sub_lang + u'.' + sub_format
- if os.path.isfile(encodeFilename(sub_filename)):
- self.report_existingsubtitles(sub_filename)
- continue
+ sub_filename = subtitles_filename(filename, sub_lang, sub_format)
self.report_writesubtitles(sub_filename)
with io.open(encodeFilename(sub_filename), 'w', encoding='utf-8') as subfile:
subfile.write(sub)