mirror of https://github.com/blackjack4494/yt-dlc
[tele5] Bypass geo restriction
This commit is contained in:
parent
b77888228d
commit
a5b6102ea8
|
@ -7,11 +7,15 @@ from .common import InfoExtractor
|
||||||
from .jwplatform import JWPlatformIE
|
from .jwplatform import JWPlatformIE
|
||||||
from .nexx import NexxIE
|
from .nexx import NexxIE
|
||||||
from ..compat import compat_urlparse
|
from ..compat import compat_urlparse
|
||||||
from ..utils import NO_DEFAULT
|
from ..utils import (
|
||||||
|
NO_DEFAULT,
|
||||||
|
smuggle_url,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class Tele5IE(InfoExtractor):
|
class Tele5IE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?tele5\.de/(?:[^/]+/)*(?P<id>[^/?#&]+)'
|
_VALID_URL = r'https?://(?:www\.)?tele5\.de/(?:[^/]+/)*(?P<id>[^/?#&]+)'
|
||||||
|
_GEO_COUNTRIES = ['DE']
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'https://www.tele5.de/mediathek/filme-online/videos?vid=1549416',
|
'url': 'https://www.tele5.de/mediathek/filme-online/videos?vid=1549416',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
|
@ -98,5 +102,7 @@ class Tele5IE(InfoExtractor):
|
||||||
jwplatform_id = extract_id(JWPLATFORM_ID_RE, 'jwplatform id')
|
jwplatform_id = extract_id(JWPLATFORM_ID_RE, 'jwplatform id')
|
||||||
|
|
||||||
return self.url_result(
|
return self.url_result(
|
||||||
'jwplatform:%s' % jwplatform_id, ie=JWPlatformIE.ie_key(),
|
smuggle_url(
|
||||||
video_id=jwplatform_id)
|
'jwplatform:%s' % jwplatform_id,
|
||||||
|
{'geo_countries': self._GEO_COUNTRIES}),
|
||||||
|
ie=JWPlatformIE.ie_key(), video_id=jwplatform_id)
|
||||||
|
|
Loading…
Reference in New Issue