>>107275297
>>107275298
I was able to succesfully do this using ffmpeg & imagemagick, you just need to automate it using a script. You'll have to have all your tools in the proper place though.
@echo OFF
for %%A in (*.mp4) do C:\Users\NAME\ffmpeg-static-new\ffmpeg -hide_banner -i 20211116_114410.mp4 -threads 16 -vf scale=320:-1 -r 10 -f image2pipe -vcodec ppm - | convert -delay 5 -loop 0 - output.gif"
Powershell "Dir | Rename-Item -NewName {$_.name -replace '.mp4.','.'}"
Powershell "Dir | Rename-Item -NewName {$_.name -replace ' ','_'}"
timeout /t 1 /nobreak > NUL