Browse Source

[vidme] Use original vid.me title template for untitled videos

totalwebcasting
Sergey M․ 9 years ago
parent
commit
4a8963770e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/extractor/vidme.py

+ 2
- 2
youtube_dl/extractor/vidme.py View File

@ -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,


Loading…
Cancel
Save