# AUTOMATIC1111 mods by teknopath. Paraphrased by szabo0genie
with these instructions you can make animations with `stable diffusion`.
:::info
line 20 of `loopback.py`
this is the original line.
```py
loops = gr.Slider(minimum=1, maximum=32, step=1, label='Loops', value=4)
```
this is the modded line. WARN [IF YOU WANT TO `GIT PULL` MUST CHANGE BACK TO ORIGINAL.]
```py
loops = gr.Slider(minimum=1, maximum=4096, step=1, label='Loopsieloop', value=4096)
```
also comment out lines 75<->83
:::
with these instructions you can use `stable diffusion` `portable` [no local pythons]
:::info
line 0 of `webui.bat`
add `GIT` to you `path`.
```bash
path=%PATH%;C:\Program Files\Git\bin
```
:::
with these instructions you can use `stable diffusion` in blender [ai render].
:::info
line 6 of `webui-user.bat`
this is the original line.
```bat
set COMMANDLINE_ARGS=
```
this is the modded line. WARN [IF YOU WANT TO `GIT PULL` MUST CHANGE BACK TO ORIGINAL.]
```bat
set COMMANDLINE_ARGS=--api
```
:::