I\'m using ffmpeg to create a video, from a list of base64 encoded images that I pipe into ffmpeg.
ffmpeg
Outputting to a file (using the attached cod
Try to add the following command after your sp.Popen :
sp.Popen
output, _ = pipe.communicate()
I think you need to communicate it with the opened process. After that you can print it to make sure it worked :
print(_)