avi codec issues in 64-bit Windows 7 environment
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello all,
In an algorithm I am collaborating on the data sequence is outputted as an avi file with the line
film = avifile([PathName,FileName],'compression','Indeo5','quality', 100,'fps',fps);
While this algorithm runs fine on 32-bit Windows XP I am trying to modify it to run on 64-bit Windows 7 as the Indeo codecs are not available. I have read various MathWorks articles that seem to skip over what is the preferred codec for this OS, and it seems other people have similar problems.
I have tried the following codecs:
- The Cinepak codec is not available for use on 64-bit Windows 7
- The MSVC and RLE codecs create errors as they do not work for truecolour images
- Indeo 2, 3, 5 codecs have been tested and they create errors as are not supported by 64-bit Windows 7
- FFDShow (FFDS) has been installed and tested, and while this produces a video it is skewed and stretched at 45 degrees (this was suggested as a solution for another user on the google group for MATLAB but has failed)
As it stands I can currently only output an avi file using no compression ('None'). Is there are codec that will output avi files correctly on 64-bit Windows, or a workaround that does not include post-processing by third party software?
Thanks for your time,
Chris
2 commentaires
Réponses (3)
bram desmet
le 15 Août 2011
Hi,
I work on a Win7 64 bit machine with Matlab R2009a, and I am able to compress avi files using the Intel Indeo4 codec, referring to it with the appropriate fourcc code 'i420':
movie2avi(mov,'test.avi','Compression','i420');
I don't remember how I got a hold of the 64 bit version of the Indeo4, though, ... could have been in some codec package
good luck
bram
2 commentaires
Wyken Seagrave
le 14 Mai 2014
The secret of creating high quality videos on Windows is to use VideoWriter, an object compressed with Motion JPEG, and not movie2avi, which produces low quality video.
Brad
le 17 Avr 2015
Bram, agreed. I, too, use a Windows 7, 64-bit machine running R2012b. In an effort to get any compression out of the movie2avi function I utilized the same Intel CODEC you did, i420 - and it finally worked!!
I then produced the same AVI file using VideoWriter. Both methods produced quality videos. But the VideoWriter file was 883KB vs. 37.5MB for the movie2avi file.
Nick Haddad
le 19 Mai 2011
Modifié(e) : John Kelly
le 13 Nov 2013
Chris,
Unfortunately in R2010a and earlier there is no strong compressed solution using avifile on 64-bit windows.
If you are able to upgrade to R2010b, you'll have access to the new VideoWriter object, which supports Motion JPEG AVI files across all platforms.
1 commentaire
leila
le 16 Mai 2014
Modifié(e) : leila
le 16 Mai 2014
I encounter this error and I have R2010b, Do you know how to change and fix the code?
mov = avifile(outFile, 'COMPRESSION', 'Indeo5', 'FPS', iftp.FramesPerSecond, 'QUALITY', 100);
Error
Indeo codecs are not supported in this version of Windows. Please specify a different codec.
Martijn
le 12 Mai 2011
The Xvid codec works pretty well in combination with MATLAB. A 64-bit version can be downloaded from:
Note that you cannot configure all setting of Xvid from within MATLAB, but the Xvid settings are persistent so you could for example first configure it from inside VirtualDub.
Voir également
Catégories
En savoir plus sur Audio and Video Data dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!