1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-03 00:05:36 +08:00

[Twitcasting] fixed regex

This commit is contained in:
sichuan-pepper 2018-10-29 04:43:36 +09:00
parent 2417bf0daa
commit f3c73dd40f

View File

@ -7,7 +7,7 @@ import re
class TwitcastingIE(InfoExtractor): class TwitcastingIE(InfoExtractor):
_VALID_URL = r'https?://(?:www|ssl|en|pt|es|ja|ko\.)?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',
@ -29,7 +29,7 @@ class TwitcastingIE(InfoExtractor):
webpage = self._download_webpage(url, video_id) webpage = self._download_webpage(url, video_id)
playlist_url = self._html_search_regex(r'(["\'])(?P<url>http.+?\.m3u8.*?)\1', webpage, name='playlist url', group='url') playlist_url = self._html_search_regex(r'(["\'])(?P<url>http.+?\.m3u8.*?)\1', webpage, name='playlist url', group='url')
formats = self._extract_m3u8_formats(playlist_url.group('url'), video_id, ext='mp4') formats = self._extract_m3u8_formats(playlist_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)