Borrar filtros
Borrar filtros

how to process multiple video files from a folder

4 visualizaciones (últimos 30 días)
Life is Wonderful
Life is Wonderful el 21 de Ag. de 2023
Comentada: Life is Wonderful el 22 de Ag. de 2023
I am in the process of processing numerous video files from a folder, so I need a sample support for processing one video file at a time. I am using the following snippet, but I am getting stuck with the following additional parameter when I look at the file name, which is halting my progress. Any assistance would be greatly appreciated.
folder = 'C:\Video_file\';
files = dir(folder)
files = 0×1 empty struct array with fields: name folder date bytes isdir datenum
files.name
numel(files.name)
Error using numel
Not enough input arguments.
ans =
162 % on my windows system
I see followig output
files.name
ans =
'.' % this is NOT required
ans =
'..' % this is NOT required
ans =
'dummy1.avi'
ans =
'dummy2.avi'
Thank you very much.
  4 comentarios
Stephen23
Stephen23 el 21 de Ag. de 2023
Editada: Stephen23 el 21 de Ag. de 2023
numel(S.name) % this will throw an error if S has zero/multiple elements.
"I want to loop through the files one by one"
You can simply loop over the elements of S:
S = dir(..);
for k = 1:numel(S)
F = fullfile(S(k).folder,S(k).name);
% do whatever you want with filename F
end
Life is Wonderful
Life is Wonderful el 22 de Ag. de 2023
Thank you very @Stephen23
I could implement my solution.

Iniciar sesión para comentar.

Respuestas (2)

C B
C B el 21 de Ag. de 2023
files = dir('C:\Video_file\*.avi')

Image Analyst
Image Analyst el 21 de Ag. de 2023
This is one of the most common FAQ questions, so see the FAQ:

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by