how to compress any video by using H.264 compression standard ....
19 ビュー (過去 30 日間)
古いコメントを表示
can any one suggest me that how to compress a video by using h.264 compression standard in matlab.... thank u in advance
0 件のコメント
回答 (1 件)
YT
2019 年 2 月 5 日
編集済み: YT
2019 年 2 月 5 日
v = VideoWriter('my-video.mp4','MPEG-4'); %uses h264 encoding
v.Quality = 80; %video quality
open(v);
writeVideo(v,myDataMatrix);
close(v);
2 件のコメント
Guillaume
2019 年 2 月 5 日
Stricly speaking MPEG-4 can use other codecs than H.264. However, the documentation for VIdeoWriter does state that matlab uses H.264 for MPEG-4.
参考
カテゴリ
Help Center および File Exchange で Audio and Video Data についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!