summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-09-28 10:49:58 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-09-28 10:49:58 +0200
commitc84178977268df1fb705bc8fd8cf3aa73158139a (patch)
tree482a7608859e024c7287e9f9c2081798870dc49b
parentc121a75b368a0c75de7416cbb36d9b9f40a7f1a7 (diff)
downloadyoutube-dl-c84178977268df1fb705bc8fd8cf3aa73158139a.tar.gz
youtube-dl-c84178977268df1fb705bc8fd8cf3aa73158139a.tar.xz
youtube-dl-c84178977268df1fb705bc8fd8cf3aa73158139a.zip
[muenchentv] Add thumbnail
-rw-r--r--youtube_dl/extractor/muenchentv.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/extractor/muenchentv.py b/youtube_dl/extractor/muenchentv.py
index 7cb6749be..c7f6beb9c 100644
--- a/youtube_dl/extractor/muenchentv.py
+++ b/youtube_dl/extractor/muenchentv.py
@@ -22,6 +22,7 @@ class MuenchenTVIE(InfoExtractor):
             'ext': 'mp4',
             'title': 're:^münchen.tv-Livestream [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
             'is_live': True,
+            'thumbnail': 're:^https?://.*\.jpg$'
         },
         'params': {
             'skip_download': True,
@@ -70,5 +71,6 @@ class MuenchenTVIE(InfoExtractor):
             'title': title,
             'formats': formats,
             'is_live': True,
+            'thumbnail': thumbnail,
         }