standardtestbattery.m

来自「Video IO toolbox for matlab. 用directsho」· M 代码 · 共 26 行

M
26
字号
function standardTestBattery(plugin)
%standardTestBattery(plugin)
%  Performs a standard battery of tests on a given plugin
%
%Examples:
%  standardTestBattery
%  standardTestBattery ffmpegPopen2  % linux & similar
%  standardTestBattery ffmpegDirect  % ...if system's gcc is compatible w/ Matlab's
%  standardTestBattery DirectShow    % Windows
%

ienter

if nargin < 1, plugin = defaultVideoIOPlugin; end

readTests(plugin);
writeTests(plugin);
if ispc
  testGetinfo;
end
testBitRate(plugin); 
testGopSize(plugin);
longWriteTest(plugin);

iexit

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?