How to create a movie from a .esp file (which is actually JSON) and a set of images that Google Earth Studio generates when you render?
The docs recommend Adobe products, but those are paid and I only need this once: https://earth.google.com/studio/docs/making-animations/rendering/

You can use ffmpeg
Like so:
ffmpeg -f image2 -r 30 -i your_project%03d.png -c:v libx264 -pix_fmt yuv420p out.mp4Where the
-rflag is the Frame rate you chose, and the-iflag the name pattern of the jpges in thefootagefolder.