[pornhub] Add support for DASH formats (closes #20403)
This commit is contained in:
parent
5e1271c56d
commit
b8526c78f9
1 changed files with 5 additions and 0 deletions
|
@ -14,6 +14,7 @@ from ..compat import (
|
|||
)
|
||||
from .openload import PhantomJSwrapper
|
||||
from ..utils import (
|
||||
determine_ext,
|
||||
ExtractorError,
|
||||
int_or_none,
|
||||
orderedSet,
|
||||
|
@ -275,6 +276,10 @@ class PornHubIE(PornHubBaseIE):
|
|||
r'/(\d{6}/\d{2})/', video_url, 'upload data', default=None)
|
||||
if upload_date:
|
||||
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
|
||||
mobj = re.search(r'(?P<height>\d+)[pP]?_(?P<tbr>\d+)[kK]', video_url)
|
||||
if mobj:
|
||||
|
|
Loading…
Reference in a new issue