I'm checking file-size using a script that report content-length in BYTES that matches exactly what I see on my Mac, BUT if I convert bytes to KBs:
function formatBytes($bytes, $precision = 2) {
$units = array('B', 'KB', 'MB', 'GB', 'TB');
$bytes = max($bytes, 0);
$pow = floor(($bytes ? log($bytes) : 0) / log(1024));
$pow = min($pow, count($units) - 1);
$bytes /= (1 << (10 * $pow));
return round($bytes, $precision) . ' ' . $units[$pow];
}
... the size in KB is always different than what I see on my Mac.
So example:
Windows 8 TV Ad Tune.m4r
- Bytes (Mac): 4,27,840 bytes
KBs (Mac) : 428KB
Bytes (Script): 427840
- KBs (Script): 417.81 KB
I wonder if its the script or something else causing this difference?
Thanks!