mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[ntvru] Rename from NTV to clarify the difference between n-tv.de and ntv.ru
This commit is contained in:
		@@ -317,7 +317,7 @@ from .nrk import (
 | 
				
			|||||||
    NRKIE,
 | 
					    NRKIE,
 | 
				
			||||||
    NRKTVIE,
 | 
					    NRKTVIE,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
from .ntv import NTVIE
 | 
					from .ntvru import NTVRuIE
 | 
				
			||||||
from .nytimes import NYTimesIE
 | 
					from .nytimes import NYTimesIE
 | 
				
			||||||
from .nuvid import NuvidIE
 | 
					from .nuvid import NuvidIE
 | 
				
			||||||
from .oktoberfesttv import OktoberfestTVIE
 | 
					from .oktoberfesttv import OktoberfestTVIE
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -9,7 +9,7 @@ from ..utils import (
 | 
				
			|||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class NTVIE(InfoExtractor):
 | 
					class NTVRuIE(InfoExtractor):
 | 
				
			||||||
    _VALID_URL = r'http://(?:www\.)?ntv\.ru/(?P<id>.+)'
 | 
					    _VALID_URL = r'http://(?:www\.)?ntv\.ru/(?P<id>.+)'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    _TESTS = [
 | 
					    _TESTS = [
 | 
				
			||||||
@@ -92,9 +92,7 @@ class NTVIE(InfoExtractor):
 | 
				
			|||||||
    ]
 | 
					    ]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def _real_extract(self, url):
 | 
					    def _real_extract(self, url):
 | 
				
			||||||
        mobj = re.match(self._VALID_URL, url)
 | 
					        video_id = self._match_id(url)
 | 
				
			||||||
        video_id = mobj.group('id')
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        page = self._download_webpage(url, video_id)
 | 
					        page = self._download_webpage(url, video_id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        video_id = self._html_search_regex(self._VIDEO_ID_REGEXES, page, 'video id')
 | 
					        video_id = self._html_search_regex(self._VIDEO_ID_REGEXES, page, 'video id')
 | 
				
			||||||
		Reference in New Issue
	
	Block a user