X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fvevo.py;h=8f4db59d42dc4fc8268295e6a22f3470d47be9c3;hb=955c451456e5268e8596da79d1fcf48df2af7a55;hp=7c97b9b364efc8c47ef3594e4382222ba2b09d5a;hpb=e5de3f6c89d2432a3afbc6d0545259ad49ee17a9;p=youtube-dl diff --git a/youtube_dl/extractor/vevo.py b/youtube_dl/extractor/vevo.py index 7c97b9b36..8f4db59d4 100644 --- a/youtube_dl/extractor/vevo.py +++ b/youtube_dl/extractor/vevo.py @@ -33,6 +33,7 @@ class VevoIE(InfoExtractor): "duration": 230.12, "width": 1920, "height": 1080, + 'timestamp': 1372057200, } }, { 'note': 'v3 SMIL format', @@ -46,6 +47,7 @@ class VevoIE(InfoExtractor): 'title': 'I Wish I Could Break Your Heart', 'duration': 226.101, 'age_limit': 0, + 'timestamp': 1392796919, } }, { 'note': 'Age-limited video', @@ -57,7 +59,7 @@ class VevoIE(InfoExtractor): 'title': 'Tunnel Vision (Explicit)', 'uploader': 'Justin Timberlake', 'upload_date': '20130704', - 'upload_timestamp': 1372906800, + 'timestamp': 1372906800, }, 'params': { 'skip_download': 'true', @@ -175,7 +177,7 @@ class VevoIE(InfoExtractor): 'title': video_info['title'], 'formats': formats, 'thumbnail': video_info['imageUrl'], - 'upload_timestamp': timestamp_ms // 1000, + 'timestamp': timestamp_ms // 1000, 'uploader': video_info['mainArtists'][0]['artistName'], 'duration': video_info['duration'], 'age_limit': age_limit,