Program for video file size
1 回表示 (過去 30 日間)
古いコメントを表示
How can i find the video size in GB?
0 件のコメント
採用された回答
Kawin Kumaran
2020 年 7 月 5 日
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 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!