1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-09 13:45:40 +08:00

[Twitcasting] Add new extractor

This commit is contained in:
sichuan-pepper 2018-10-27 03:40:44 +09:00
parent 5d90a8a5f3
commit e489984c1f
2 changed files with 45 additions and 0 deletions

View File

@ -1190,6 +1190,7 @@ from .tweakers import TweakersIE
from .twentyfourvideo import TwentyFourVideoIE from .twentyfourvideo import TwentyFourVideoIE
from .twentymin import TwentyMinutenIE from .twentymin import TwentyMinutenIE
from .twentythreevideo import TwentyThreeVideoIE from .twentythreevideo import TwentyThreeVideoIE
from .twitcasting import TwitcastingIE
from .twitch import ( from .twitch import (
TwitchVideoIE, TwitchVideoIE,
TwitchChapterIE, TwitchChapterIE,

View File

@ -0,0 +1,44 @@
# coding: utf-8
from __future__ import unicode_literals
from .common import InfoExtractor
import re
class TwitcastingIE(InfoExtractor):
_VALID_URL = r'https?://(?:[^\/]+)?\.?twitcasting\.tv/(?P<uploader_id>[^\/]+)/movie/(?P<video_id>[0-9]+)$'
_TEST = {
'url': 'https://twitcasting.tv/ivetesangalo/movie/2357609',
'md5': '745243cad58c4681dc752490f7540d7f',
'info_dict': {
'id': '2357609',
'ext': 'mp4',
'title': 'Recorded Live #2357609',
'uploader_id': 'ivetesangalo',
'description': "Moi! I'm live on TwitCasting from my iPhone.",
'thumbnail': r're:^https?://.*\.jpg$',
}
}
def _real_extract(self, url):
mobj = re.match(self._VALID_URL, url)
video_id = mobj.group('video_id')
uploader_id = mobj.group('uploader_id')
webpage = self._download_webpage(url, video_id)
for m in re.finditer(r'(["\'])(?P<url>http.+?\.m3u8.*?)\1', webpage):
formats = self._extract_m3u8_formats(m.group('url'), video_id, ext='mp4')
thumbnail = self._og_search_thumbnail(webpage)
title = self._html_search_meta('twitter:title', webpage)
description = self._og_search_description(webpage) or self._html_search_meta('twitter:description', webpage)
return({
'id': video_id,
'url': url,
'title': title,
'description': description,
'thumbnail': thumbnail,
'uploader_id': uploader_id,
'formats': formats,
})