aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-10-20 20:17:54 +0600
committerSergey M․ <dstftw@gmail.com>2015-10-20 20:17:54 +0600
commit4a8963770e37568c484841338cbb6761cf3cb5c3 (patch)
treebcee109c1f81b94c075d4db042ff9a3e6db20d0b
parent5b0aa2c7b15f970026a50388f566a76af710f51b (diff)
downloadyoutube-dl-4a8963770e37568c484841338cbb6761cf3cb5c3.tar.xz
[vidme] Use original vid.me title template for untitled videos
-rw-r--r--youtube_dl/extractor/vidme.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/vidme.py b/youtube_dl/extractor/vidme.py
index 393970a12..296e00423 100644
--- a/youtube_dl/extractor/vidme.py
+++ b/youtube_dl/extractor/vidme.py
@@ -107,7 +107,7 @@ class VidmeIE(InfoExtractor):
'info_dict': {
'id': 'e5g',
'ext': 'mp4',
- 'title': 'e5g',
+ 'title': 'Video upload (e5g)',
'thumbnail': 're:^https?://.*\.jpg',
'timestamp': 1401480195,
'upload_date': '20140530',
@@ -180,7 +180,7 @@ class VidmeIE(InfoExtractor):
return {
'id': video_id,
- 'title': title or video_id,
+ 'title': title or 'Video upload (%s)' % video_id,
'description': description,
'thumbnail': thumbnail,
'uploader': uploader,