[tvc] Refactor extractor names

This commit is contained in:
Sergey M․ 2015-06-12 16:24:13 +06:00
parent 494f20cbdc
commit 954c1d0529
3 changed files with 5 additions and 5 deletions

View File

@ -586,7 +586,7 @@
from .tv4 import TV4IE
from .tvc import (
TVCIE,
TVCEmbedIE,
TVCArticleIE,
)
from .tvigle import TvigleIE
from .tvp import TvpIE, TvpSeriesIE

View File

@ -34,7 +34,7 @@
from .nbc import NBCSportsVPlayerIE
from .ooyala import OoyalaIE
from .rutv import RUTVIE
from .tvc import TVCEmbedIE
from .tvc import TVCIE
from .sportbox import SportBoxEmbedIE
from .smotri import SmotriIE
from .condenast import CondeNastIE
@ -1303,7 +1303,7 @@ def _playlist_from_matches(matches, getter=None, ie=None):
return self.url_result(rutv_url, 'RUTV')
# Look for embedded TVC player
rutv_url = TVCEmbedIE._extract_url(webpage)
rutv_url = TVCIE._extract_url(webpage)
if rutv_url:
return self.url_result(rutv_url, 'TVCEmbed')

View File

@ -10,7 +10,7 @@
)
class TVCEmbedIE(InfoExtractor):
class TVCIE(InfoExtractor):
_VALID_URL = r'http://(?:www\.)?tvc\.ru/video/iframe/id/(?P<id>\d+)'
_TEST = {
'url': 'http://www.tvc.ru/video/iframe/id/74622/isPlay/false/id_stat/channel/?acc_video_id=/channel/brand/id/17/show/episodes/episode_id/39702',
@ -63,7 +63,7 @@ def _real_extract(self, url):
}
class TVCIE(InfoExtractor):
class TVCArticleIE(InfoExtractor):
_VALID_URL = r'http://(?:www\.)?tvc\.ru/(?!video/iframe/id/)(?P<id>[^?#]+)'
_TESTS = [{
'url': 'http://www.tvc.ru/channel/brand/id/29/show/episodes/episode_id/39702/',