how to compress any video by using H.264 compression standard ....

75 views (last 30 days)
can any one suggest me that how to compress a video by using h.264 compression standard in matlab.... thank u in advance

Answers (1)

YT
YT on 5 Feb 2019
Edited: YT on 5 Feb 2019
You can use VideoWriter with MPEG-4 profile for this
v = VideoWriter('my-video.mp4','MPEG-4'); %uses h264 encoding
v.Quality = 80; %video quality
open(v);
writeVideo(v,myDataMatrix);
close(v);
  2 Comments
YT
YT on 5 Feb 2019
Edited: YT on 5 Feb 2019
True, but we're still talking Matlab here, so indeed there's no other codec to choose from (I don't know why can't choose the codec though, maybe because h264 is supported by most devices/players).

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!