mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[pericope] Add support for pscp.tv URLs
This commit is contained in:
parent
b56e41a701
commit
b3633fa0ce
@ -20,7 +20,7 @@ def _call_api(self, method, query, item_id):
|
|||||||
class PeriscopeIE(PeriscopeBaseIE):
|
class PeriscopeIE(PeriscopeBaseIE):
|
||||||
IE_DESC = 'Periscope'
|
IE_DESC = 'Periscope'
|
||||||
IE_NAME = 'periscope'
|
IE_NAME = 'periscope'
|
||||||
_VALID_URL = r'https?://(?:www\.)?periscope\.tv/[^/]+/(?P<id>[^/?#]+)'
|
_VALID_URL = r'https?://(?:www\.)?(?:periscope|pscp)\.tv/[^/]+/(?P<id>[^/?#]+)'
|
||||||
# Alive example URLs can be found here http://onperiscope.com/
|
# Alive example URLs can be found here http://onperiscope.com/
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'https://www.periscope.tv/w/aJUQnjY3MjA3ODF8NTYxMDIyMDl2zCg2pECBgwTqRpQuQD352EMPTKQjT4uqlM3cgWFA-g==',
|
'url': 'https://www.periscope.tv/w/aJUQnjY3MjA3ODF8NTYxMDIyMDl2zCg2pECBgwTqRpQuQD352EMPTKQjT4uqlM3cgWFA-g==',
|
||||||
@ -41,6 +41,9 @@ class PeriscopeIE(PeriscopeBaseIE):
|
|||||||
}, {
|
}, {
|
||||||
'url': 'https://www.periscope.tv/bastaakanoggano/1OdKrlkZZjOJX',
|
'url': 'https://www.periscope.tv/bastaakanoggano/1OdKrlkZZjOJX',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'https://www.periscope.tv/w/1ZkKzPbMVggJv',
|
||||||
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
@ -103,7 +106,7 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
|
|
||||||
class PeriscopeUserIE(PeriscopeBaseIE):
|
class PeriscopeUserIE(PeriscopeBaseIE):
|
||||||
_VALID_URL = r'https?://(?:www\.)?periscope\.tv/(?P<id>[^/]+)/?$'
|
_VALID_URL = r'https?://(?:www\.)?(?:periscope|pscp)\.tv/(?P<id>[^/]+)/?$'
|
||||||
IE_DESC = 'Periscope user videos'
|
IE_DESC = 'Periscope user videos'
|
||||||
IE_NAME = 'periscope:user'
|
IE_NAME = 'periscope:user'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user