MakeItTalk
MakeItTalk copied to clipboard
examples/tmp.mp4: No such file or directory
examples/tmp.mp4: No such file or directory
even if the model echo "finish image2image gen" , there is no output.
i am having the same issue, have you found any solution for this?
Had the same issue running this on WSL, managed to solve it by:
- changing video format from
.mp4
to.avi
- making sure that
cc2.VideoWriter_fourcc
has capitalisedMJPG
instead ofmjpg
Below is the minimum set of changes that were required to make python main_end2end.py --jpg <filename.jpg>
work for me. I haven't yet had the time nor need to dig into other paths, hope this helps 🤞
In src/approaches/train_image_translation.py
:
- in line 386 replace
out.mp4
without.avi
- in line 386 replace
mjpeg
withMJPEG
- in line 429 replace
out.mp4
without.avi
In util/vis.py
:
- in line 38 replace
tmp.mp4
withtmp.avi
- in line 52 replace
tmp.mp4
withtmp.avi
- in line 58 replace
tmp.mp4
withtmp.avi
- in line 62 replace
tmp.mp4
withtmp.avi