Program for video file size
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Abdulaziz Alamri
le 4 Juil 2020
Réponse apportée : Kawin Kumaran
le 5 Juil 2020
How can i find the video size in GB?
0 commentaires
Réponse acceptée
Kawin Kumaran
le 5 Juil 2020
To find the size of a file in bytes :
info = dir('video1.avi');
filesize = info.bytes;
Then to convert bytes to GB it can be done mathematically :
gb_size = filesize / (1024^3)
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!