diff --git a/archivebox/config.py b/archivebox/config.py index 660da49e..00cf2440 100644 --- a/archivebox/config.py +++ b/archivebox/config.py @@ -25,7 +25,7 @@ FETCH_SCREENSHOT = os.getenv('FETCH_SCREENSHOT', 'True' FETCH_DOM = os.getenv('FETCH_DOM', 'True' ).lower() == 'true' FETCH_WARC = os.getenv('FETCH_WARC', 'True' ).lower() == 'true' FETCH_GIT = os.getenv('FETCH_GIT', 'True' ).lower() == 'true' -FETCH_MEDIA = os.getenv('FETCH_MEDIA', 'False' ).lower() == 'true' +FETCH_MEDIA = os.getenv('FETCH_MEDIA', 'True' ).lower() == 'true' FETCH_FAVICON = os.getenv('FETCH_FAVICON', 'True' ).lower() == 'true' SUBMIT_ARCHIVE_DOT_ORG = os.getenv('SUBMIT_ARCHIVE_DOT_ORG', 'True' ).lower() == 'true' diff --git a/bin/archivebox-setup b/bin/archivebox-setup index 2c60b0dc..79937b6c 100755 --- a/bin/archivebox-setup +++ b/bin/archivebox-setup @@ -10,6 +10,7 @@ echo " - Chromium Browser (see README for Google-Chrome instructions in echo " - python3" echo " - wget" echo " - curl" +echo " - youtube-dl" echo "" echo " You may follow Manual Setup instructions in README.md instead if you prefer not to run an unknown script." echo " Press enter to continue, or Ctrl+C to cancel..."