[generic] Add support for Cinerama player (Fixes #4752)
This commit is contained in:
parent
ba55168157
commit
501f13fbf3
|
@ -489,6 +489,16 @@ class GenericIE(InfoExtractor):
|
||||||
'title': 'Jack Tips: 5 Steps to Permanent Gut Healing',
|
'title': 'Jack Tips: 5 Steps to Permanent Gut Healing',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
# Cinerama player
|
||||||
|
{
|
||||||
|
'url': 'http://www.abc.net.au/7.30/content/2015/s4164797.htm',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '730m_DandD_1901_512k',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'uploader': 'www.abc.net.au',
|
||||||
|
'title': 'Game of Thrones with dice - Dungeons and Dragons fantasy role-playing game gets new life - 19/01/2015',
|
||||||
|
}
|
||||||
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
def report_following_redirect(self, new_url):
|
def report_following_redirect(self, new_url):
|
||||||
|
@ -1046,6 +1056,10 @@ class GenericIE(InfoExtractor):
|
||||||
\s*{[^}]+? ["']?clip["']?\s*:\s*\{\s*
|
\s*{[^}]+? ["']?clip["']?\s*:\s*\{\s*
|
||||||
["']?url["']?\s*:\s*["']([^"']+)["']
|
["']?url["']?\s*:\s*["']([^"']+)["']
|
||||||
''', webpage))
|
''', webpage))
|
||||||
|
if not found:
|
||||||
|
# Cinerama player
|
||||||
|
found = re.findall(
|
||||||
|
r"cinerama\.embedPlayer\(\s*\'[^']+\',\s*'([^']+)'", webpage)
|
||||||
if not found:
|
if not found:
|
||||||
# Try to find twitter cards info
|
# Try to find twitter cards info
|
||||||
found = filter_video(re.findall(
|
found = filter_video(re.findall(
|
||||||
|
|
Loading…
Reference in New Issue