From 2ba5d8f5d3659660b2dc0cbd486e6fc50f0c65f1 Mon Sep 17 00:00:00 2001 From: Vitaly Zdanevich Date: Mon, 1 Jul 2024 12:13:15 +0400 Subject: [PATCH] autogenerate_max_duration: 1 hour to 3 --- README.md | 4 ++-- src/options.lua | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 33b6061..35390e6 100644 --- a/README.md +++ b/README.md @@ -78,8 +78,8 @@ autogenerate=yes # Only automatically thumbnail videos shorter than this (in seconds) # You will have to press T (or your own keybind) to enable the thumbnail previews # Set to 0 to disable the check, ie. thumbnail videos no matter how long they are -# Defaults to 3600 (one hour) -autogenerate_max_duration=3600 +# Defaults to 3 hours +autogenerate_max_duration=10800 # Use mpv to generate thumbnail even if ffmpeg is found in PATH # ffmpeg is slightly faster than mpv but lacks support for ordered chapters in MKVs, diff --git a/src/options.lua b/src/options.lua index dbb35b7..1eaf848 100644 --- a/src/options.lua +++ b/src/options.lua @@ -14,7 +14,7 @@ local thumbnailer_options = { autogenerate = true, -- Only automatically thumbnail videos shorter than this (seconds) - autogenerate_max_duration = 3600, -- 1 hour + autogenerate_max_duration = 10800, -- 3 hours -- SHA1-sum filenames over this length -- It's nice to know what files the thumbnails are (hence directory names)