mirror of
https://github.com/l1ving/youtube-dl
synced 2025-02-03 03:13:11 +08:00
[Twitcasting] Implemented requested changes.
This commit is contained in:
parent
e489984c1f
commit
2417bf0daa
@ -7,7 +7,7 @@ import re
|
|||||||
|
|
||||||
|
|
||||||
class TwitcastingIE(InfoExtractor):
|
class TwitcastingIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:[^\/]+)?\.?twitcasting\.tv/(?P<uploader_id>[^\/]+)/movie/(?P<video_id>[0-9]+)$'
|
_VALID_URL = r'https?://(?:www|ssl|en|pt|es|ja|ko\.)?twitcasting\.tv/(?P<uploader_id>[^\/]+)/movie/(?P<video_id>[0-9]+)'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
'url': 'https://twitcasting.tv/ivetesangalo/movie/2357609',
|
'url': 'https://twitcasting.tv/ivetesangalo/movie/2357609',
|
||||||
'md5': '745243cad58c4681dc752490f7540d7f',
|
'md5': '745243cad58c4681dc752490f7540d7f',
|
||||||
@ -28,12 +28,12 @@ class TwitcastingIE(InfoExtractor):
|
|||||||
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
for m in re.finditer(r'(["\'])(?P<url>http.+?\.m3u8.*?)\1', webpage):
|
playlist_url = self._html_search_regex(r'(["\'])(?P<url>http.+?\.m3u8.*?)\1', webpage, name='playlist url', group='url')
|
||||||
formats = self._extract_m3u8_formats(m.group('url'), video_id, ext='mp4')
|
formats = self._extract_m3u8_formats(playlist_url.group('url'), video_id, ext='mp4')
|
||||||
thumbnail = self._og_search_thumbnail(webpage)
|
thumbnail = self._og_search_thumbnail(webpage)
|
||||||
title = self._html_search_meta('twitter:title', webpage)
|
title = self._html_search_meta('twitter:title', webpage)
|
||||||
description = self._og_search_description(webpage) or self._html_search_meta('twitter:description', webpage)
|
description = self._og_search_description(webpage) or self._html_search_meta('twitter:description', webpage)
|
||||||
return({
|
return{
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'url': url,
|
'url': url,
|
||||||
'title': title,
|
'title': title,
|
||||||
@ -41,4 +41,4 @@ class TwitcastingIE(InfoExtractor):
|
|||||||
'thumbnail': thumbnail,
|
'thumbnail': thumbnail,
|
||||||
'uploader_id': uploader_id,
|
'uploader_id': uploader_id,
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
})
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user