MATLAB: Extract the last frame and check the video info

last frame and video infoMATLAB

""
obj=VideoReader('111.wmv');
a=read(obj);
frames=get(obj,'numberOfFrames');
for k = 1 : frames
I(k).cdata = a(:,:,:,k);
I(k).colormap = [];
end
implay(I)
"" 1st Question:
how i need to take out my last frame???? if i dont knw what is my frame go on
2nd Question:
how do i check ,the info of my video avi is "fileinfo=wmvinfo('111.wmv')" but mine was not avi folder

Best Answer

After the loop you show, the last frame will be I(end).cdata
I do not understand what you mean about "mine was not avi folder" ?