如何为 Matlab 安装这些库/编解码器?

如何为 Matlab 安装这些库/编解码器?

我刚刚在我的计算机上安装了 matlab,看似成功了,但是我一直试图运行一个程序,却出现了以下错误:

>> reproduceResults
Warning: Directory already exists. 
> In reproduceResults at 14 
Processing ./data/baby.mp4
Error using VideoReader/init (line 429)
The file requires the following codec(s) to be installed on your system:
    video/x-h264


Error in VideoReader (line 132)
            obj.init(fileName);

Error in amplify_spatial_lpyr_temporal_iir (line 31)
    vid = VideoReader(vidFile);

Error in reproduceResults (line 20)
amplify_spatial_lpyr_temporal_iir(inFile, resultsDir, 10, 16, 0.4, 0.05, 0.1);

>> 

作为参考,我尝试运行的代码在这里: http://people.csail.mit.edu/mrub/vidmag/#code

下载他们提供的所有视频文件后,我正在运行 reproduceResults.m。

任何帮助,将不胜感激!


我在 Google 上找不到任何有用的答案。我试过的答案是: http://memyselfandcomputer.blogspot.com/2011/01/matlab-2010-videox-h264-error-on-ubuntu.html

但它似乎没有改变任何东西。有没有办法获得更详细的输出以帮助我更好地调试/搜索?

相关内容