Program for video file size
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Abdulaziz Alamri
il 4 Lug 2020
Risposto: Kawin Kumaran
il 5 Lug 2020
How can i find the video size in GB?
0 Commenti
Risposta accettata
Kawin Kumaran
il 5 Lug 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 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!