1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-17 20:01:44 +02:00

Merge pull request #338 from comsomisha/master

Bug fix with youtube-dl option
This commit is contained in:
Nick Sweeting
2020-04-16 10:51:12 -04:00
committed by GitHub

View File

@@ -496,7 +496,6 @@ def fetch_media(link_dir, link, timeout=MEDIA_TIMEOUT):
'--write-thumbnail', '--write-thumbnail',
'--no-call-home', '--no-call-home',
'--no-check-certificate', '--no-check-certificate',
'--user-agent',
'--all-subs', '--all-subs',
'--extract-audio', '--extract-audio',
'--keep-video', '--keep-video',
@@ -563,7 +562,7 @@ def archive_dot_org(link_dir, link, timeout=TIMEOUT):
CURL_BINARY, CURL_BINARY,
'--location', '--location',
'--head', '--head',
*(('--user-agent', '{}'.format(CURL_USER_AGENT),) if CURL_USER_AGENT else ()), # be nice to the Archive.org people and show them where all this ArchiveBox traffic is coming from *(('--user-agent', '{}'.format(CURL_USER_AGENT),) if CURL_USER_AGENT else ()), # be nice to the Archive.org people and show them where all this ArchiveBox traffic is coming from
'--max-time', str(timeout), '--max-time', str(timeout),
*(() if CHECK_SSL_VALIDITY else ('--insecure',)), *(() if CHECK_SSL_VALIDITY else ('--insecure',)),
submit_url, submit_url,