1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-09-02 02:42:38 +02:00

quieter media downloads

This commit is contained in:
Nick Sweeting
2019-02-04 20:03:06 -08:00
parent 4e5b466bb2
commit 9f5441c4f3

View File

@@ -528,7 +528,7 @@ def fetch_media(link_dir, link, timeout=MEDIA_TIMEOUT, overwrite=False):
result = run(CMD, stdout=PIPE, stderr=PIPE, cwd=output, timeout=timeout + 1) # audio/audio.mp3
end()
if result.returncode:
if b'ERROR: Unsupported URL' in result.stderr:
if b'ERROR: Unsupported URL' in result.stderr or b'HTTP Error 404' in result.stderr:
pass
else:
print(' got youtubedl response code {}:'.format(result.returncode))