Cannot read frames from .avi video file

14 visualizzazioni (ultimi 30 giorni)
Why cant I read the frames from the attached .avi video?
I used the below line
v = VideoReader('00jrXRMlZOY_0_10.avi');
and I got v as below
The values of v can be viewed, but when I use the below code, I dont get any error, but, no frame is displayed, but the v shows properties. Why so?
while hasFrame(v)
vidFrame = readFrame(v);
figure(1), imshow(vidFrame)
end
Please can someone suggest me, what do I need to do, to solve it?

Risposta accettata

Cris LaPierre
Cris LaPierre il 10 Apr 2023
Modificato: Cris LaPierre il 13 Apr 2023
I also couldn't read or view the video in desktop MATLAB, but I could in MATLAB Online.
  2 Commenti
Elysi Cochin
Elysi Cochin il 13 Apr 2023
Modificato: Elysi Cochin il 13 Apr 2023
Sir, if it is issue with the codec, will the VideoReader function work and readFrames function not work
The VideoReader function gives me the output as shown in the question
When using the below code, I dont get any error, but, no frame is displayed, but the v shows properties. Why so?
while hasFrame(v)
vidFrame = readFrame(v);
figure(1), imshow(vidFrame)
end
Cris LaPierre
Cris LaPierre il 13 Apr 2023
I also didn't get an error, but could not read the video or even get info about the file using mmfileinfo. From the page I linked to:
Troubleshooting: Errors Reading Video File
You might be unable to read a video file if MATLAB cannot access the appropriate codec. 64-bit applications use 64-bit codec libraries, while 32-bit applications use 32-bit codec libraries. For example, when working with 64-bit MATLAB, you cannot read video files that require access to a 32-bit codec installed on your system. To read these files, try one of the following:
  • Install a 64-bit codec that supports this file format. Then, try reading the file using 64-bit MATLAB.
  • Re-encode the file into a different format with a 64-bit codec that is installed on your computer.
Sometimes, VideoReader cannot open a video file for reading on Windows platforms. This might occur if you have installed a third-party codec that overrides your system settings. Uninstall the codec and try opening the video file in MATLAB again.

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by