how to compress any video by using H.264 compression standard ....
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
can any one suggest me that how to compress a video by using h.264 compression standard in matlab.... thank u in advance
0 commentaires
Réponses (1)
YT
le 5 Fév 2019
Modifié(e) : YT
le 5 Fév 2019
v = VideoWriter('my-video.mp4','MPEG-4'); %uses h264 encoding
v.Quality = 80; %video quality
open(v);
writeVideo(v,myDataMatrix);
close(v);
2 commentaires
Guillaume
le 5 Fév 2019
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.
Voir également
Catégories
En savoir plus sur Audio and Video Data dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!