diff options
| author | Stephan <sbeuze@hotmail.com> | 2019-10-04 14:05:35 +0200 | 
|---|---|---|
| committer | Sergey M <dstftw@gmail.com> | 2019-10-04 19:05:35 +0700 | 
| commit | 4e72d02f39f0d8e9ae9bbe8233c157bef3b58bdf (patch) | |
| tree | 8edfe8dc012d89ee1c2cc5ad514be160b85c5633 | |
| parent | 76e510b92c4a1c4b0001f892504ba2cbb4b8d486 (diff) | |
[xvideos] Extend _VALID_URL (#22471)
| -rw-r--r-- | youtube_dl/extractor/xvideos.py | 39 | 
1 files changed, 38 insertions, 1 deletions
diff --git a/youtube_dl/extractor/xvideos.py b/youtube_dl/extractor/xvideos.py index 166bcf443..8fc64914c 100644 --- a/youtube_dl/extractor/xvideos.py +++ b/youtube_dl/extractor/xvideos.py @@ -17,7 +17,8 @@ class XVideosIE(InfoExtractor):      _VALID_URL = r'''(?x)                      https?://                          (?: -                            (?:www\.)?xvideos\.com/video| +                            (?:[^/]+\.)?xvideos2?\.com/video| +                            (?:www\.)?xvideos\.es/video|                              flashservice\.xvideos\.com/embedframe/|                              static-hw\.xvideos\.com/swf/xv-player\.swf\?.*?\bid_video=                          ) @@ -39,6 +40,42 @@ class XVideosIE(InfoExtractor):      }, {          'url': 'http://static-hw.xvideos.com/swf/xv-player.swf?id_video=4588838',          'only_matching': True, +    }, { +        'url': 'http://xvideos.com/video4588838/biker_takes_his_girl', +        'only_matching': True +    }, { +        'url': 'https://xvideos.com/video4588838/biker_takes_his_girl', +        'only_matching': True +    }, { +        'url': 'https://xvideos.es/video4588838/biker_takes_his_girl', +        'only_matching': True +    }, { +        'url': 'https://www.xvideos.es/video4588838/biker_takes_his_girl', +        'only_matching': True +    }, { +        'url': 'http://xvideos.es/video4588838/biker_takes_his_girl', +        'only_matching': True +    }, { +        'url': 'http://www.xvideos.es/video4588838/biker_takes_his_girl', +        'only_matching': True +    }, { +        'url': 'http://fr.xvideos.com/video4588838/biker_takes_his_girl', +        'only_matching': True +    }, { +        'url': 'https://fr.xvideos.com/video4588838/biker_takes_his_girl', +        'only_matching': True +    }, { +        'url': 'http://it.xvideos.com/video4588838/biker_takes_his_girl', +        'only_matching': True +    }, { +        'url': 'https://it.xvideos.com/video4588838/biker_takes_his_girl', +        'only_matching': True +    }, { +        'url': 'http://de.xvideos.com/video4588838/biker_takes_his_girl', +        'only_matching': True +    }, { +        'url': 'https://de.xvideos.com/video4588838/biker_takes_his_girl', +        'only_matching': True      }]      def _real_extract(self, url):  | 
