Browse Source

[pornhub] Add support for DASH formats (closes #20403)

Sergey M․ 6 years ago
parent
commit
b8526c78f9
1 changed files with 5 additions and 0 deletions
  1. 5 0
      youtube_dl/extractor/pornhub.py

+ 5 - 0
youtube_dl/extractor/pornhub.py

@@ -14,6 +14,7 @@ from ..compat import (
 )
 )
 from .openload import PhantomJSwrapper
 from .openload import PhantomJSwrapper
 from ..utils import (
 from ..utils import (
+    determine_ext,
     ExtractorError,
     ExtractorError,
     int_or_none,
     int_or_none,
     orderedSet,
     orderedSet,
@@ -275,6 +276,10 @@ class PornHubIE(PornHubBaseIE):
                     r'/(\d{6}/\d{2})/', video_url, 'upload data', default=None)
                     r'/(\d{6}/\d{2})/', video_url, 'upload data', default=None)
                 if upload_date:
                 if upload_date:
                     upload_date = upload_date.replace('/', '')
                     upload_date = upload_date.replace('/', '')
+            if determine_ext(video_url) == 'mpd':
+                formats.extend(self._extract_mpd_formats(
+                    video_url, video_id, mpd_id='dash', fatal=False))
+                continue
             tbr = None
             tbr = None
             mobj = re.search(r'(?P<height>\d+)[pP]?_(?P<tbr>\d+)[kK]', video_url)
             mobj = re.search(r'(?P<height>\d+)[pP]?_(?P<tbr>\d+)[kK]', video_url)
             if mobj:
             if mobj: