From 130d9654f52690f04b59f9bf96912fe99025d616 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sun, 16 Aug 2020 15:58:29 +0200 Subject: [PATCH] Video scraping is now enabled by default. --- USERGUIDE.md | 4 ++-- es-core/src/Settings.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/USERGUIDE.md b/USERGUIDE.md index e164944bb..a4a3e4699 100644 --- a/USERGUIDE.md +++ b/USERGUIDE.md @@ -420,7 +420,7 @@ A selection of which systems to scrape for. It's possible to automatically scrap #### Content settings -Describes the content types to include in the scraping. Most users will probably not need to adjust so many of these, excect perhaps to enable video scraping. +Describes the content types to include in the scraping. Most users will probably not need to adjust so many of these. **Scrape game names** @@ -436,7 +436,7 @@ This includes the game description, release date, developer, publisher, genre an **Scrape videos** _(ScreenScraper only)_ -Videos of actual gameplay. This option is disabled by default as it slows down the scraping significantly as well as consuming bandwidth and disk space. Not all users want gameplay videos in their frontend after all. +Videos of actual gameplay. **Scrape screenshot images** diff --git a/es-core/src/Settings.cpp b/es-core/src/Settings.cpp index 12800c293..0afeec08f 100644 --- a/es-core/src/Settings.cpp +++ b/es-core/src/Settings.cpp @@ -164,7 +164,7 @@ void Settings::setDefaults() mBoolMap["ScrapeCovers"] = true; mBoolMap["ScrapeMarquees"] = true; mBoolMap["ScrapeScreenshots"] = true; - mBoolMap["ScrapeVideos"] = false; + mBoolMap["ScrapeVideos"] = true; // Other settings. #ifdef _RPI_