我刚刚在我的计算机上安装了 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
但它似乎没有改变任何东西。有没有办法获得更详细的输出以帮助我更好地调试/搜索?
答案1
虽然有点晚了,但我也遇到了同样的问题。一个解决方法是通过以下方式安装编解码器apt-get
:
sudo apt-get -y install gstreamer0.10-ffmpeg gstreamer0.10-plugins-bad gstreamer0.10-plugins-bad-multiverse gstreamer0.10-plugins-ugly gstreamer0.10-plugins-ugly-multiverse
这帮我解决了这个问题。
答案2
这里有一个建议多种解决方案的线程,希望它包含适合您的解决方案:http://ubuntuforums.org/showthread.php?t=775943
答案3
sudo add-apt-repository ppa:mc3man/trusty-media
sudo apt-get update
sudo apt-get install gstreamer0.10-ffmpeg
在 14.04 上为 gstreamer0.10-ffmpeg 添加此 ppa,遇到了同样的问题,现已修复。