mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 23:35:04 +00:00
[yourporn] Add support for sxyprn.com (#20646)
This commit is contained in:
parent
dc27fd8bb8
commit
8721b09751
1 changed files with 6 additions and 3 deletions
|
@ -8,8 +8,8 @@
|
||||||
|
|
||||||
|
|
||||||
class YourPornIE(InfoExtractor):
|
class YourPornIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?yourporn\.sexy/post/(?P<id>[^/?#&.]+)'
|
_VALID_URL = r'https?://(?:www\.)?(?:yourporn\.sexy|sxyprn\.com)/post/(?P<id>[^/?#&.]+)'
|
||||||
_TEST = {
|
_TESTS = [{
|
||||||
'url': 'https://yourporn.sexy/post/57ffcb2e1179b.html',
|
'url': 'https://yourporn.sexy/post/57ffcb2e1179b.html',
|
||||||
'md5': '6f8682b6464033d87acaa7a8ff0c092e',
|
'md5': '6f8682b6464033d87acaa7a8ff0c092e',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
|
@ -23,7 +23,10 @@ class YourPornIE(InfoExtractor):
|
||||||
'params': {
|
'params': {
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
}
|
}, {
|
||||||
|
'url': 'https://sxyprn.com/post/57ffcb2e1179b.html',
|
||||||
|
'only_matching': True,
|
||||||
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
|
|
Loading…
Reference in a new issue