aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2018-01-19 22:49:58 +0700
committerSergey M․ <dstftw@gmail.com>2018-01-19 22:49:58 +0700
commit154e4fdace1d0caad92ccc8556b4cfe4eb28b00a (patch)
treeb539d27eb2075724768c4c225f2d7bc77b35204f /youtube_dl
parente2fc6df16971cf710596915887de25c1c52ed47c (diff)
downloadyoutube-dl-154e4fdace1d0caad92ccc8556b4cfe4eb28b00a.tar.xz
[ringtv] Remove extractor (closes #15345)
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/extractors.py1
-rw-r--r--youtube_dl/extractor/ringtv.py44
2 files changed, 0 insertions, 45 deletions
diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py
index b9d6ea807..9d3582dfa 100644
--- a/youtube_dl/extractor/extractors.py
+++ b/youtube_dl/extractor/extractors.py
@@ -881,7 +881,6 @@ from .revision3 import (
Revision3IE,
)
from .rice import RICEIE
-from .ringtv import RingTVIE
from .rmcdecouverte import RMCDecouverteIE
from .ro220 import Ro220IE
from .rockstargames import RockstarGamesIE
diff --git a/youtube_dl/extractor/ringtv.py b/youtube_dl/extractor/ringtv.py
deleted file mode 100644
index 2c2c707bd..000000000
--- a/youtube_dl/extractor/ringtv.py
+++ /dev/null
@@ -1,44 +0,0 @@
-from __future__ import unicode_literals
-
-import re
-
-from .common import InfoExtractor
-
-
-class RingTVIE(InfoExtractor):
- _VALID_URL = r'https?://(?:www\.)?ringtv\.craveonline\.com/(?P<type>news|videos/video)/(?P<id>[^/?#]+)'
- _TEST = {
- 'url': 'http://ringtv.craveonline.com/news/310833-luis-collazo-says-victor-ortiz-better-not-quit-on-jan-30',
- 'md5': 'd25945f5df41cdca2d2587165ac28720',
- 'info_dict': {
- 'id': '857645',
- 'ext': 'mp4',
- 'title': 'Video: Luis Collazo says Victor Ortiz "better not quit on Jan. 30" - Ring TV',
- 'description': 'Luis Collazo is excited about his Jan. 30 showdown with fellow former welterweight titleholder Victor Ortiz at Barclays Center in his hometown of Brooklyn. The SuperBowl week fight headlines a Golden Boy Live! card on Fox Sports 1.',
- }
- }
-
- def _real_extract(self, url):
- mobj = re.match(self._VALID_URL, url)
- video_id = mobj.group('id').split('-')[0]
- webpage = self._download_webpage(url, video_id)
-
- if mobj.group('type') == 'news':
- video_id = self._search_regex(
- r'''(?x)<iframe[^>]+src="http://cms\.springboardplatform\.com/
- embed_iframe/[0-9]+/video/([0-9]+)/''',
- webpage, 'real video ID')
- title = self._og_search_title(webpage)
- description = self._html_search_regex(
- r'addthis:description="([^"]+)"',
- webpage, 'description', fatal=False)
- final_url = 'http://ringtv.craveonline.springboardplatform.com/storage/ringtv.craveonline.com/conversion/%s.mp4' % video_id
- thumbnail_url = 'http://ringtv.craveonline.springboardplatform.com/storage/ringtv.craveonline.com/snapshots/%s.jpg' % video_id
-
- return {
- 'id': video_id,
- 'url': final_url,
- 'title': title,
- 'thumbnail': thumbnail_url,
- 'description': description,
- }