From 3ca3f77f9ce9dd504dc6af4ef605c245c31ff860 Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 2 Sep 2020 23:33:41 +0200 Subject: [skip travis] adding automerge support basically copying content of youtube_dl folder to youtube_dlc and excluding the youtube_dl folder when compiling --- youtube_dl/extractor/ku6.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 youtube_dl/extractor/ku6.py (limited to 'youtube_dl/extractor/ku6.py') diff --git a/youtube_dl/extractor/ku6.py b/youtube_dl/extractor/ku6.py new file mode 100644 index 000000000..a574408e5 --- /dev/null +++ b/youtube_dl/extractor/ku6.py @@ -0,0 +1,32 @@ +from __future__ import unicode_literals + +from .common import InfoExtractor + + +class Ku6IE(InfoExtractor): + _VALID_URL = r'https?://v\.ku6\.com/show/(?P[a-zA-Z0-9\-\_]+)(?:\.)*html' + _TEST = { + 'url': 'http://v.ku6.com/show/JG-8yS14xzBr4bCn1pu0xw...html', + 'md5': '01203549b9efbb45f4b87d55bdea1ed1', + 'info_dict': { + 'id': 'JG-8yS14xzBr4bCn1pu0xw', + 'ext': 'f4v', + 'title': 'techniques test', + } + } + + def _real_extract(self, url): + video_id = self._match_id(url) + webpage = self._download_webpage(url, video_id) + + title = self._html_search_regex( + r'

(.*?)

', webpage, 'title') + dataUrl = 'http://v.ku6.com/fetchVideo4Player/%s.html' % video_id + jsonData = self._download_json(dataUrl, video_id) + downloadUrl = jsonData['data']['f'] + + return { + 'id': video_id, + 'title': title, + 'url': downloadUrl + } -- cgit v1.2.3