mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-31 10:18:55 +00:00
9 lines
358 B
SQL
Executable File
9 lines
358 B
SQL
Executable File
INSERT IGNORE INTO settings (name, value, hint, setting)
|
|
VALUES (
|
|
'processthumbnails', 0,
|
|
'Whether to attempt to process a video thumbnail image. You must have ffmpeg for this.',
|
|
'processthumbnails'
|
|
);
|
|
|
|
UPDATE settings SET value = 1
|
|
WHERE setting = 'processthumbnails' AND (SELECT * FROM (SELECT value FROM settings WHERE setting = 'ffmpegpath') s) != ''; |