Log in

View Full Version : Get screens from the script


juGGaKNot
18th June 2009, 18:51
AVIsource(xx.avi")
ConvertToYV12(matrix="pc.601")

I want to get every 100' frame from the avi and save it to the harddrive as bmp or jpg, is this possible via avisynth ?

What should i add to the script for every 100' frame ?

thnx.

Gavino
18th June 2009, 19:08
SelectEvery (http://avisynth.org/mediawiki/SelectEvery)(100, 0)
ImageWriter (http://avisynth.org/mediawiki/ImageWriter)("filename", type="bmp")

juGGaKNot
18th June 2009, 19:28
SelectEvery (http://avisynth.org/mediawiki/SelectEvery)(100, 0)
ImageWriter (http://avisynth.org/mediawiki/ImageWriter)("filename", type="bmp")

tack.