Skip to content

Commit

Permalink
[beeg] Add support for api/v6 v2 URLs without t argument (closes #21701)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw authored and pareronia committed Jun 22, 2020
1 parent 7783344 commit c76e3ae
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions youtube_dl/extractor/beeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ class BeegIE(InfoExtractor):
# api/v6 v2
'url': 'https://beeg.com/1941093077?t=911-1391',
'only_matching': True,
}, {
# api/v6 v2 w/o t
'url': 'https://beeg.com/1277207756',
'only_matching': True,
}, {
'url': 'https://beeg.porn/video/5416503',
'only_matching': True,
Expand All @@ -49,14 +53,17 @@ def _real_extract(self, url):
r'beeg_version\s*=\s*([\da-zA-Z_-]+)', webpage, 'beeg version',
default='1546225636701')

qs = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query)
t = qs.get('t', [''])[0].split('-')
if len(t) > 1:
if len(video_id) >= 10:
query = {
'v': 2,
's': t[0],
'e': t[1],
}
qs = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query)
t = qs.get('t', [''])[0].split('-')
if len(t) > 1:
query.update({
's': t[0],
'e': t[1],
})
else:
query = {'v': 1}

Expand Down

0 comments on commit c76e3ae

Please sign in to comment.