Program for video file size

조회 수: 2 (최근 30일)
Abdulaziz Alamri
Abdulaziz Alamri 2020년 7월 4일
답변: Kawin Kumaran 2020년 7월 5일
How can i find the video size in GB?

채택된 답변

Kawin Kumaran
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개)

제품


릴리스

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by