vladmandic / sd-extension-steps-animation

Save Interim Steps as Animation extension for SD WebUI
143 stars 19 forks source link

Not working #20

Closed ronbere closed 1 year ago

ronbere commented 1 year ago

nothing appears on intermediate and animation folders. ffmpeg installed, deforum working

vladmandic commented 1 year ago

i'll check.

ronbere commented 1 year ago

Steps animation error: ffmpeg not found

vladmandic commented 1 year ago

which os? can you post console log?

ronbere commented 1 year ago

Running DDIM Sampling with 19 timesteps Decoding image: 100%|██████████████████████████████████████████████████████████████████| 19/19 [00:15<00:00, 1.19it/s] Steps animation error: ffmpeg not found:

Windows 10

vladmandic commented 1 year ago

are you sure that ffmpeg is in path? if its installed, that's a typical problem in 99% of cases. lets see if python can find it - try to execute:

python -c 'import shutil; print(shutil.which("ffmpeg"))'

ronbere commented 1 year ago

python -c 'import shutil; print(shutil.which("ffmpeg"))' File "", line 1 python -c 'import shutil; print(shutil.which("ffmpeg"))' ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax

Sorry i'm not an expert of python

same in cmd : D:\automatic>python -c 'import shutil; print(shutil.which("ffmpeg"))' File "", line 1 'import ^ SyntaxError: unterminated string literal (detected at line 1)

vladmandic commented 1 year ago

just run in command line, don't start python.

ronbere commented 1 year ago

Working fine on A1111...

vladmandic commented 1 year ago

the syntax i asked you to run was not valid for windows, try again using this:

python -c "import shutil; print(shutil.which(\"ffmpeg\"))"

LanceGao97 commented 1 year ago

nothing appears on intermediate and animation folders. ffmpeg installed, deforum working

the intermedia will be deleted by default checkbox (the creator must be a clean man) ! if you uncheck delete intermedia, you will see the sequence images, and the script has some issue with windows path, so the ffmpeg can't creat that video file, maybe the naming is too long, so both the intermedia and video is not existing. (-_-)

vladmandic commented 1 year ago

@ronbere i've asked to check existence of ffmpeg in path 2 weeks ago - once you provide that information i can reopen the issue, in the meantime closing it as its been idle for 2 weeks.