I used to convert a stack of PNGs with alpha transparency using ffmpeg:
ffmpeg -i frame_%03d.png -vcodec png output.mov
I have an old mov
where this worked. Now I tried to do that again a while later (on an M1 Mac now). Now it doesn't work anymore. Here are the file properties:
property | old movie (works) | new movie (does not work) |
---|---|---|
resolution | 378 × 378 | 1600 × 1000 |
codec | Apple ProRes 4444 | PNG |
alpha channel | yes | ? |
color profile | SD (6-1-6) | ? |
software | Lavf57.41.100 | Lavf59.16.100 |
The ?
shows that I cannot open the new file in Quicktime, nor import it in Keynote. Any idea how I can use ffmpeg
to convert my image stack to a file with transparency that works in Keynote / Quicktime?