[tvc] Refactor extractor names
This commit is contained in:
parent
494f20cbdc
commit
954c1d0529
3 changed files with 5 additions and 5 deletions
|
@ -586,7 +586,7 @@ from .tv2 import (
|
|||
from .tv4 import TV4IE
|
||||
from .tvc import (
|
||||
TVCIE,
|
||||
TVCEmbedIE,
|
||||
TVCArticleIE,
|
||||
)
|
||||
from .tvigle import TvigleIE
|
||||
from .tvp import TvpIE, TvpSeriesIE
|
||||
|
|
|
@ -34,7 +34,7 @@ from .brightcove import BrightcoveIE
|
|||
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 @@ class GenericIE(InfoExtractor):
|
|||
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')
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ from ..utils import (
|
|||
)
|
||||
|
||||
|
||||
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 @@ class TVCEmbedIE(InfoExtractor):
|
|||
}
|
||||
|
||||
|
||||
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/',
|
||||
|
|
Loading…
Reference in a new issue