How to make a movie loop / controll speed?
2 ビュー (過去 30 日間)
古いコメントを表示
I made a movie using a looping function to generate plots.
Then grabbed and stored frames:
f = getframe;
F = [F f];
clf
Then played it back:
movie(F)
Is there a command I can use to make it loop after it is over?
Is there a command I can use to alter playback speed?
Thank you.
0 件のコメント
採用された回答
Sachin Ganjare
2012 年 10 月 12 日
movie(F,n,fps)
n -> number of times movie is played fps -> frames per second to control speed of movie
Hope it helps!!!
1 件のコメント
Jeff Severino
2019 年 5 月 1 日
Thank you so much! 1/fps = s is much easier than using (and waiting for) pause.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!