Skip to content

Commit

Permalink
[pornhub] Dismiss tbr extracted from download URLs (closes ytdl-org#2…
Browse files Browse the repository at this point in the history
…8927)

No longer reliable
  • Loading branch information
dstftw committed Jun 20, 2021
1 parent 2ccee8d commit da32828
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions youtube_dl/extractor/pornhub.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,17 +408,14 @@ def add_format(format_url, height=None):
format_url, video_id, 'mp4', entry_protocol='m3u8_native',
m3u8_id='hls', fatal=False))
return
tbr = None
mobj = re.search(r'(?P<height>\d+)[pP]?_(?P<tbr>\d+)[kK]', format_url)
if mobj:
if not height:
height = int(mobj.group('height'))
tbr = int(mobj.group('tbr'))
if not height:
height = int_or_none(self._search_regex(
r'(?P<height>\d+)[pP]?_\d+[kK]', format_url, 'height',
default=None))
formats.append({
'url': format_url,
'format_id': '%dp' % height if height else None,
'height': height,
'tbr': tbr,
})

for video_url, height in video_urls:
Expand All @@ -440,7 +437,8 @@ def add_format(format_url, height=None):
add_format(video_url, height)
continue
add_format(video_url)
self._sort_formats(formats)
self._sort_formats(
formats, field_preference=('height', 'width', 'fps', 'format_id'))

video_uploader = self._html_search_regex(
r'(?s)From:&nbsp;.+?<(?:a\b[^>]+\bhref=["\']/(?:(?:user|channel)s|model|pornstar)/|span\b[^>]+\bclass=["\']username)[^>]+>(.+?)<',
Expand Down

0 comments on commit da32828

Please sign in to comment.