Matlab VideoPlayer 文件的播放速度太快

playback of Matlab VideoPlayer file is too fast

我的 Matlab VideoPlayer 的播放速度太快,显示人们走路的速度是原来的两倍。我尝试调整 .FrameRate 但没有效果。我正在使用 Windows 7 64 位计算机,并使用 Windows 媒体播放器进行播放。

代码如下:

%// Init:   
detection_video_file = VideoWriter( 'my_file');
    writerObj.FrameRate = 10;  %  but 100 60 30 don't have an effect
    open( detection_video_file );

%// The loop
writeVideo( detection_video_file, dispFrame );

%// And finally:  
close( detection_video_file );

更正如下:

detection_video_file.FrameRate = 5;