Hi,
Create a temporary directory , and copy the movie file there .
then use the ffmpeg utility to break it up into frames. Example:
ffmpeg -s 30x50 yourmovie.mp4 f-%d.png
This will create frames f-1.png, f-2.png .etc. Your original movie has been resized to 30x50 pixels. (so u need to change this value based on your matrix size)
Note: ffmpeg is run from the DOS command line .
Example:
C:\
cd \tempdir
ffmpeg -i yourmovie.mp4 -s 30x50 f-%d.png
This will create a number of files 'f1-' onwards
now , drop the picture effect and browse and point to the first file ie
"f-1.png", using the pictures effect
The picture effect will then pick all the frames.
Try with a small movie segment ie 10 secs long
Note: Only 'something-1' will work ie the application looks for the '-1' and then only picks the others.