From this article, we know that .pptx is pretty finicky:
I prefer to keep things simple and not depend on having access to quicktime. Thus, .wmv it is.
This person found a way to trigger ffmpeg to output wmv:
https://walterebert.com/blog/creating-wmv-videos-with-ffmpeg/
>> ffmpeg -i intput.mp4 -b:v 2M -vcodec msmpeg4 -acodec wmav2 output.wmv
(don't know what all the flags do)
Seems to work reliably for what I need
No comments:
Post a Comment