matlab - Codec Not Found -


I am trying to read the AVI file in MATLAB using VideoReader.

Video = Video Reader ('test.avi');

But get this error:

  The following codecs are required to install the file on your system: Error in CDID video reader (Line 147) obj.init (file name); Error in video (line1) video = video reader ('test.avi');  

The CVD codec has been installed on my Win7 64bit box. Any help? I need to use video reader.

Edit: MATLAB version is 2013

, and aviwriter On the document that specifies that you can use "Cinepac" on 32-bit systems. "I think this issue is the combination of that specific codec and your 64 bit version is MATLAB.You probably have software on your computer that can handle 32 bit codec, with the help of some video player software. But MATLAB will be looking for 64 bit codecs (which is not available for Cinepac).

Your options appear like this:

  1. File any Other codecs or uncompressed Convert to version.
  2. Install or access 32-bit version MATLAB

Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

c# - MySQL Parameterized Select Query joining tables issue -