Added crucible content and alloy quality calculation and overlay Added tools action/heat status overlay Added lava/waterfall action prediction and overlay Added border highlighting
6 lines
192 B
Batchfile
6 lines
192 B
Batchfile
# convert all gif files in the current directory to webp using ffmpeg
|
|
# requires ffmpeg and webp
|
|
|
|
for %%i in (*.gif) do D:\ffmpeg -i "%%i" -c:v libwebp -loop 0 -pix_fmt yuva420p "%%~ni.webp"
|
|
|