Printing path to saved video, typo fix
parent
ba075cb48c
commit
5cd909f3b3
|
|
@ -4,7 +4,7 @@ from PIL import Image, ImageFilter, ImageDraw
|
|||
from modules.ui import plaintext_to_html
|
||||
import modules.shared as shared
|
||||
from modules.processing import Processed, StableDiffusionProcessing
|
||||
|
||||
from modules.paths_internal import script_path
|
||||
from .helpers import (
|
||||
fix_env_Path_ffprobe,
|
||||
closest_upper_divisible_by_eight,
|
||||
|
|
@ -221,7 +221,7 @@ def create_zoom(
|
|||
|
||||
def prepare_output_path():
|
||||
isCollect = shared.opts.data.get("infzoom_collectAllResources", False)
|
||||
output_path = shared.opts.data.get("infzoom_outpath", "output")
|
||||
output_path = shared.opts.data.get("infzoom_outpath", "outputs")
|
||||
|
||||
save_path = os.path.join(
|
||||
output_path, shared.opts.data.get("infzoom_outSUBpath", "infinite-zooms")
|
||||
|
|
@ -530,7 +530,7 @@ def create_zoom_single(
|
|||
int(video_start_frame_dupe_amount),
|
||||
int(video_last_frame_dupe_amount),
|
||||
)
|
||||
|
||||
print("Video saved in: " + os.path.join(script_path, out_config["video_filename"]))
|
||||
return (
|
||||
out_config["video_filename"],
|
||||
main_frames,
|
||||
|
|
|
|||
Loading…
Reference in New Issue