MATLAB avi file compression

edited June 2007 in Science & Tech
Hey folks,

I am generating an avi movie file in MATLAB and am trying to play it in PowerPoint, but Powerpoint will not play it. It seems that MATLAB's default compression did not allow the file to be played in such an application as Power Point. Can anyone shed some light on this problem?

Thanks,

Matt

Comments

  • shwaipshwaip bluffin' with my muffin Icrontian
    edited June 2007
    This appears to be a powerpoint issue rather than a matlab issue. The default codec (<tt>Indeo5</tt>) appears not to work in ppt. if the video isn't very long, you can try telling it not to use any compression:

    [php]
    movie2avi(mov,filename, 'compression','None');
    [/php]

    if you're not using movie2avi, you should just be able to add the last to arguments to whatever you're using to build the avi file.
Sign In or Register to comment.