Home > vbmeg > functions > tool_box > dynamics_movie > test_fig > basic_tool > video_prepare.m

video_prepare

PURPOSE ^

SYNOPSIS ^

function writerObj = video_prepare(video_dir)

DESCRIPTION ^

 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function    writerObj = video_prepare(video_dir)
0002 %
0003 % Copyright (C) 2011, ATR All Rights Reserved.
0004 % License : New BSD License(see VBMEG_LICENSE.txt)
0005 
0006 writerObj = ...
0007     VideoWriter(fullfile(video_dir,...
0008      ['cylinder', '.avi']));
0009 writerObj.Quality = 100;
0010 writerObj.FrameRate = 10;
0011 open(writerObj);

Generated on Mon 22-May-2023 06:53:56 by m2html © 2005