I have no idea how to solve. #185
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Been running Simswap for a long time for video conversion, but wanted to try converting images (I've never used it for images before).
However I've run in to a mass of errors. For the record, there are no errors when running the test_video_swapsingle.py, It all works fine.
Here is what I get:
Any ideas?
These patch files are there, I tried deleting them. They got recreated okay. But then when I run again it says no write access, which can't be the case if its able to create them.
Someone help please........
These are warnings and information not really errors, it should still work like this. These are shown mostly because your versions are newer than what this was targeted for. It should still work.
What does it show after this? Do you get a working output? if so, just ignore these warnings for now and don't update the environment unless you have a reason to.
Also, for images I recommend running DFDNet on them after, works great to improve their quality.
You can also make a video with images by using FFmpeg and then use the frames from tmp folder.
Make a bat file with:
@echo off setlocal EnableDelayedExpansion set i=0 for %%a in (*.jpg) do ( set /a i+=1 ren "%%a" "!i!.new" ) ren *.new *.jpgPut it into your images folder and run it. It will rename images to 1,2,3 etc.
Open cmd and input:
"*ffmpeg.exe location*" -y -noautorotate -i "*images location*\%d.jpg" -c:v copy "*output location*\file.mp4"I suggest using .mp4 as the file extension.
@DvST8x No there is no output despite the warnings.
@Gitgutx Yes that is what I did in the end, made a slideshow of the images and faceswapped that. I'm still at a loss as to why this is not working correctly.