From 497014bf5da1d101f51cb88451fdbbbff315131a Mon Sep 17 00:00:00 2001 From: Jaret Burkett Date: Fri, 31 Jul 2026 19:11:58 -0600 Subject: [PATCH] Set i2v to default to false when omitted from the config --- toolkit/config_modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/config_modules.py b/toolkit/config_modules.py index 0726f52d..cda8662b 100644 --- a/toolkit/config_modules.py +++ b/toolkit/config_modules.py @@ -1066,7 +1066,7 @@ class DatasetConfig: # if true, will use a fask method to get image sizes. This can result in errors. Do not use unless you know what you are doing self.fast_image_size: bool = kwargs.get('fast_image_size', False) - self.do_i2v: bool = kwargs.get('do_i2v', True) # do image to video on models that are both t2i and i2v capable + self.do_i2v: bool = kwargs.get('do_i2v', False) # do image to video on models that are both t2i and i2v capable self.do_audio: bool = kwargs.get('do_audio', False) # load audio from video files for models that support it self.audio_preserve_pitch: bool = kwargs.get('audio_preserve_pitch', False) # preserve pitch when stretching audio to fit num_frames self.audio_normalize: bool = kwargs.get('audio_normalize', False) # normalize audio volume levels when loading