フィルターのクリア

Save a movie smaller than avi

5 ビュー (過去 30 日間)
David Pesetsky
David Pesetsky 2016 年 7 月 10 日
コメント済み: David Pesetsky 2016 年 7 月 12 日
Hi,
I was wondering if there's a snippet of code that can save movies smaller than the typical avi? My system cannot find any codecs, so I thought mp4 would be better. But that's getting complex fast as I read about it. Here' my sample:
Z = peaks;
surf(Z)
axis tight manual
ax = gca;
ax.NextPlot = 'replaceChildren';
loops = 40;
F(loops) = struct('cdata',[],'colormap',[]);
for j = 1:loops
X = sin(j*pi/10)*Z;
surf(X,Z)
drawnow
F(j) = getframe(gcf);
end
fig = figure;
movie(fig,F,2);
movie2avi(F, 'awesomeMovie', 'compression', 'None');
Seems videowriter may have potential, but I cannot find an example I understand, based on my example above.
Hoping for some help, and thank you. Dave
  2 件のコメント
Walter Roberson
Walter Roberson 2016 年 7 月 10 日
'compression', 'none' would be much bigger than AVI.
Which operating system are you using?
David Pesetsky
David Pesetsky 2016 年 7 月 10 日
Windows 7 professional. It creates an avi. A big one.

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2016 年 7 月 10 日
Here's an example of how to use VideoWriter. Try it for different formats: wmv, mp4, etc.
  9 件のコメント
Image Analyst
Image Analyst 2016 年 7 月 11 日
There is a "FrameRate" option you can specify to slow it down.
David Pesetsky
David Pesetsky 2016 年 7 月 12 日
Very nice!
Thank you. Will study this a bit more for adjusting http://www.mathworks.com/help/matlab/ref/videowriter-object.html

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAudio and Video Data についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by