Program for video file size
조회 수: 2 (최근 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!