I have a text file contains a diffrent directories of video data, but now I don't know how to read those directories line by line from this text file and pass it to a function of reading video, I wish you guys can help me
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
mohammed alalas
am 10 Okt. 2017
Beantwortet: Eric
am 9 Nov. 2017
video1 = VideoReader('E:\video\original.avi');
0 Kommentare
Akzeptierte Antwort
Eric
am 9 Nov. 2017
It sounds like your question is less about video files and more about how to read a text file containing a list of filepaths to videos that you then want to use to create video reader objects. This should do the trick:
myFile = fopen('MyVideos.txt');
myVidPaths = textscan(myFile,'%s');
fclose(myFile);
for i = 1:numel(myVidPaths{1})
video(i) = VideoReader(myVidPaths{1}{i});
end
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!