mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-13 10:17:38 +01:00
Merge branch 'master' of github.com:rg3/youtube-dl
This commit is contained in:
commit
e712d94adf
2 changed files with 66 additions and 24 deletions
|
@ -10,10 +10,10 @@
|
||||||
class PhotobucketIE(InfoExtractor):
|
class PhotobucketIE(InfoExtractor):
|
||||||
_VALID_URL = r'http://(?:[a-z0-9]+\.)?photobucket\.com/.*(([\?\&]current=)|_)(?P<id>.*)\.(?P<ext>(flv)|(mp4))'
|
_VALID_URL = r'http://(?:[a-z0-9]+\.)?photobucket\.com/.*(([\?\&]current=)|_)(?P<id>.*)\.(?P<ext>(flv)|(mp4))'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
u'url': u'http://media.photobucket.com/user/rachaneronas/media/TiredofLinkBuildingTryBacklinkMyDomaincom_zpsc0c3b9fa.mp4.html?filters[term]=search&filters[primary]=videos&filters[secondary]=images&sort=1&o=0',
|
'url': 'http://media.photobucket.com/user/rachaneronas/media/TiredofLinkBuildingTryBacklinkMyDomaincom_zpsc0c3b9fa.mp4.html?filters[term]=search&filters[primary]=videos&filters[secondary]=images&sort=1&o=0',
|
||||||
u'file': u'zpsc0c3b9fa.mp4',
|
'file': 'zpsc0c3b9fa.mp4',
|
||||||
u'md5': u'7dabfb92b0a31f6c16cebc0f8e60ff99',
|
'md5': '7dabfb92b0a31f6c16cebc0f8e60ff99',
|
||||||
u'info_dict': {
|
'info_dict': {
|
||||||
'upload_date': '20130504',
|
'upload_date': '20130504',
|
||||||
'uploader': 'rachaneronas',
|
'uploader': 'rachaneronas',
|
||||||
'title': 'Tired of Link Building? Try BacklinkMyDomain.com!',
|
'title': 'Tired of Link Building? Try BacklinkMyDomain.com!',
|
||||||
|
@ -34,10 +34,10 @@ def _real_extract(self, url):
|
||||||
info = json.loads(info_json)
|
info = json.loads(info_json)
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'url': info[u'downloadUrl'],
|
'url': info['downloadUrl'],
|
||||||
'uploader': info[u'username'],
|
'uploader': info['username'],
|
||||||
'upload_date': datetime.date.fromtimestamp(info[u'creationDate']).strftime('%Y%m%d'),
|
'upload_date': datetime.date.fromtimestamp(info['creationDate']).strftime('%Y%m%d'),
|
||||||
'title': info[u'title'],
|
'title': info['title'],
|
||||||
'ext': video_extension,
|
'ext': video_extension,
|
||||||
'thumbnail': info[u'thumbUrl'],
|
'thumbnail': info['thumbUrl'],
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
class VestiIE(InfoExtractor):
|
class VestiIE(InfoExtractor):
|
||||||
IE_NAME = 'vesti'
|
IE_NAME = 'vesti'
|
||||||
IE_DESC = 'Вести.Ru'
|
IE_DESC = 'Вести.Ru'
|
||||||
_VALID_URL = r'http://(?:.+?\.)?(?:vesti\.ru|russia\.tv)/(?P<id>.+)'
|
_VALID_URL = r'http://(?:(?:.+?\.)?vesti\.ru|(?:2\.)?russia\.tv|tvkultura\.ru|rutv\.ru)/(?P<id>.+)'
|
||||||
|
|
||||||
_TESTS = [
|
_TESTS = [
|
||||||
{
|
{
|
||||||
|
@ -72,6 +72,35 @@ class VestiIE(InfoExtractor):
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'url': 'http://sochi2014.vesti.ru/video/index/video_id/766403',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '766403',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'XXII зимние Олимпийские игры. Российские хоккеисты стартовали на Олимпиаде с победы',
|
||||||
|
'description': 'md5:55805dfd35763a890ff50fa9e35e31b3',
|
||||||
|
'duration': 271,
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
# m3u8 download
|
||||||
|
'skip_download': True,
|
||||||
|
},
|
||||||
|
'skip': 'Blocked outside Russia'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'url': 'http://sochi2014.vesti.ru/live/play/live_id/301',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '51499',
|
||||||
|
'ext': 'flv',
|
||||||
|
'title': 'Сочи-2014. Биатлон. Индивидуальная гонка. Мужчины ',
|
||||||
|
'description': 'md5:9e0ed5c9d2fa1efbfdfed90c9a6d179c',
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
# rtmp download
|
||||||
|
'skip_download': True,
|
||||||
|
},
|
||||||
|
'skip': 'Translation has finished'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
'url': 'http://russia.tv/video/show/brand_id/5169/episode_id/970443/video_id/975648',
|
'url': 'http://russia.tv/video/show/brand_id/5169/episode_id/970443/video_id/975648',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
|
@ -101,34 +130,47 @@ class VestiIE(InfoExtractor):
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'url': 'http://sochi2014.vesti.ru/video/index/video_id/766403',
|
'url': 'http://2.russia.tv/video/show/brand_id/48863/episode_id/972920/video_id/978667/viewtype/picture',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '766403',
|
'id': '775081',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'XXII зимние Олимпийские игры. Российские хоккеисты стартовали на Олимпиаде с победы',
|
'title': 'XXII зимние Олимпийские игры. Россияне заняли весь пьедестал в лыжных гонках',
|
||||||
'description': 'md5:55805dfd35763a890ff50fa9e35e31b3',
|
'description': 'md5:15d3741dd8d04b203fbc031c6a47fb0f',
|
||||||
'duration': 271,
|
'duration': 101,
|
||||||
},
|
},
|
||||||
'params': {
|
'params': {
|
||||||
# m3u8 download
|
# m3u8 download
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
'skip': 'Blocked outside Russia'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'url': 'http://sochi2014.vesti.ru/live/play/live_id/301',
|
'url': 'http://tvkultura.ru/video/show/brand_id/31724/episode_id/972347/video_id/978186',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '51499',
|
'id': '774471',
|
||||||
'ext': 'flv',
|
'ext': 'mp4',
|
||||||
'title': 'Сочи-2014. Биатлон. Индивидуальная гонка. Мужчины ',
|
'title': 'Монологи на все времена',
|
||||||
'description': 'md5:9e0ed5c9d2fa1efbfdfed90c9a6d179c',
|
'description': 'md5:18d8b5e6a41fb1faa53819471852d5d5',
|
||||||
|
'duration': 2906,
|
||||||
},
|
},
|
||||||
'params': {
|
'params': {
|
||||||
# rtmp download
|
# m3u8 download
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
'skip': 'Translation has finished'
|
},
|
||||||
}
|
{
|
||||||
|
'url': 'http://rutv.ru/brand/show/id/6792/channel/75',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '125521',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Грустная дама червей. Х/ф',
|
||||||
|
'description': '',
|
||||||
|
'duration': 4882,
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
# m3u8 download
|
||||||
|
'skip_download': True,
|
||||||
|
},
|
||||||
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
|
|
Loading…
Reference in a new issue