?? domultifullreadtestonallloadables.m
字號:
function doMultiFullReadTestOnAllLoadables(varargin)%DOMULTIFULLREADTESTONALLLOADABLES(...)% For any loadable file (according to GETLOADABLEFILES), we run% DOMULTIFULLREADTEST on it.%% Any arguments given are passed directly to the videoReader constructors.%%Examples:% doMultiFullReadTestOnAllLoadables% doMultiFullReadTestOnAllLoadables ffmpegPopen2 % linux & similar% doMultiFullReadTestOnAllLoadables ffmpegDirect % ...if system's gcc is compatible w/ Matlab's% doMultiFullReadTestOnAllLoadables DirectShow % Windows%%Copyright (c) 2006 Gerald Dalley%See "MIT.txt" in the installation directory for licensing details (especially%when using this library on GNU/Linux). ienter[loadables, nonloadables, errors] = getLoadableFiles(varargin{:});for i=1:length(loadables) doMultiFullReadTest(loadables{i}, varargin{:});endfor i=1:length(nonloadables) if (length(nonloadables{i}) > 3) if (strcmpi(nonloadables{i}(end-3:end), '.avi')) iprintf(['"%s" (or more likely its codec) is not fully '... 'compatible with videoReader...\t not tested (%s)'], ... nonloadables{i}, errors{i}); end endendiexit
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -