diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-01-20 03:53:17 +0800 | 
|---|---|---|
| committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-01-20 03:53:17 +0800 | 
| commit | 0428106da33419302ac8ad31306f9357549f086e (patch) | |
| tree | b1fc8bed0538ebfb12d2fbf27ec9f6e52d3ed2ab | |
| parent | 73e74424561b3e277c2f071fd88b17c845a1162f (diff) | |
[letv] LetvCloud: make title looks like a title
| -rw-r--r-- | youtube_dl/extractor/letv.py | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/youtube_dl/extractor/letv.py b/youtube_dl/extractor/letv.py index ff74b5141..b15ac163e 100644 --- a/youtube_dl/extractor/letv.py +++ b/youtube_dl/extractor/letv.py @@ -253,21 +253,21 @@ class LetvCloudIE(InfoExtractor):          'info_dict': {              'id': 'p7jnfw5hw9_467623dedf',              'ext': 'mp4', -            'title': 'p7jnfw5hw9_467623dedf', +            'title': 'Video p7jnfw5hw9_467623dedf',          },      }, {          'url': 'http://yuntv.letv.com/bcloud.html?uu=p7jnfw5hw9&vu=ec93197892&pu=2c7cd40209&auto_play=1&gpcflag=1&width=640&height=360',          'info_dict': {              'id': 'p7jnfw5hw9_ec93197892',              'ext': 'mp4', -            'title': 'p7jnfw5hw9_ec93197892', +            'title': 'Video p7jnfw5hw9_ec93197892',          },      }, {          'url': 'http://yuntv.letv.com/bcloud.html?uu=p7jnfw5hw9&vu=187060b6fd',          'info_dict': {              'id': 'p7jnfw5hw9_187060b6fd',              'ext': 'mp4', -            'title': 'p7jnfw5hw9_187060b6fd', +            'title': 'Video p7jnfw5hw9_187060b6fd',          },      }] @@ -310,6 +310,6 @@ class LetvCloudIE(InfoExtractor):          return {              'id': media_id, -            'title': media_id, +            'title': 'Video %s' % media_id,              'formats': formats,          } | 
