Saving a movie generated with Jython/JES on local disk
- by Golgauth
I made an autogenerated movie clip using JES (Jython Environment for Students).
I can play it without any problem using playMovie(), but I can't figure out how to have it saved physically on disk.
The full script is located here.
...
movie = synthesizeFrameAndCreateMovie("D:\\FOLDER")
print movie
writeQuicktime(movie,"D:\\FOLDER\\movie.mov", 30)…