Skip to content

Commit

Permalink
Merge branch 'patch-1' of https://github.com/helong0911/you-get into …
Browse files Browse the repository at this point in the history
…helong0911-patch-1
  • Loading branch information
soimort committed Mar 19, 2020
2 parents 8a47a72 + 7a43ac0 commit 0a39ac4
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/you_get/extractors/baomihua.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@

import urllib

def baomihua_headers(referer=None, cookie=None):
# a reasonable UA
ua = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'
headers = {'Accept': '*/*', 'Accept-Language': 'en-US,en;q=0.5', 'User-Agent': ua}
if referer is not None:
headers.update({'Referer': referer})
if cookie is not None:
headers.update({'Cookie': cookie})
return headers

def baomihua_download_by_id(id, title=None, output_dir='.', merge=True, info_only=False, **kwargs):
html = get_html('http://play.baomihua.com/getvideourl.aspx?flvid=%s&devicetype=phone_app' % id)
host = r1(r'host=([^&]*)', html)
Expand All @@ -16,10 +26,10 @@ def baomihua_download_by_id(id, title=None, output_dir='.', merge=True, info_onl
assert vid
dir_str = r1(r'&dir=([^&]*)', html).strip()
url = "http://%s/%s/%s.%s" % (host, dir_str, vid, type)
_, ext, size = url_info(url)
_, ext, size = url_info(url, headers=baomihua_headers())
print_info(site_info, title, type, size)
if not info_only:
download_urls([url], title, ext, size, output_dir, merge = merge)
download_urls([url], title, ext, size, output_dir, merge = merge, headers=baomihua_headers())

def baomihua_download(url, output_dir='.', merge=True, info_only=False, **kwargs):
html = get_html(url)
Expand Down

0 comments on commit 0a39ac4

Please sign in to comment.