about summary refs log tree commit diff
diff options
context:
space:
mode:
authornyorain <nyorain@gmail.com>2016-08-06 01:21:39 +0200
committerSergey M․ <dstftw@gmail.com>2016-08-09 03:56:22 +0700
commit5e42f8a0adec94156b911399558a967214a9d3aa (patch)
tree26cbe7e3bbf5b8c765976209ac0a8adba2c9e506
parent1ad6b891b21b45830736698a7b59c30d9605a562 (diff)
downloadyoutube-dl-5e42f8a0adec94156b911399558a967214a9d3aa.tar.gz
youtube-dl-5e42f8a0adec94156b911399558a967214a9d3aa.tar.xz
youtube-dl-5e42f8a0adec94156b911399558a967214a9d3aa.zip
Make --metadata-from-title non fatal
Output a warning if the metadata can't be parsed from the title (and don't write any metadata) instead of raising a critical error.
-rw-r--r--youtube_dl/postprocessor/metadatafromtitle.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/postprocessor/metadatafromtitle.py b/youtube_dl/postprocessor/metadatafromtitle.py
index 42377fa0f..f7c831c67 100644
--- a/youtube_dl/postprocessor/metadatafromtitle.py
+++ b/youtube_dl/postprocessor/metadatafromtitle.py
@@ -38,7 +38,8 @@ class MetadataFromTitlePP(PostProcessor):
         title = info['title']
         match = re.match(self._titleregex, title)
         if match is None:
-            raise MetadataFromTitlePPError('Could not interpret title of video as "%s"' % self._titleformat)
+            self._downloader.to_screen('[fromtitle] Could not interpret title of video as "%s"' % self._titleformat)
+            return [], info
         for attribute, value in match.groupdict().items():
             value = match.group(attribute)
             info[attribute] = value