Hi,
This is crazy, you use Bytes unit to store size of videos...
File size is stored in an Integer (max value = 2^32/2 = 2 147 483 648) so if you have 4 files of 700 MB, this will not work.
Do you really need so precision ?
You should use KB at least, MB is the default unit.
You can change this in preferences > Media files importation > change unit to MB or KB at least.
I give you a little script to convert values in Bytes to Kilobytes on all your existing movies.
Divide by 1024*1024 to convert to Megabytes.
Code: Select all
program ConvertFileSizeBytesToKilobytes;
var
s: string;
i: Integer;
begin
// Get field size
s := GetField(fieldSize);
// Convert size value
i := StrToInt(s, -1);
if i > 0 then
begin
i := Trunc(i / 1024); // to KB
//i := Trunc(i / (1024 * 1024)) // to MB
s := IntToStr(i);
// Set fields
SetField(fieldSize, s);
end;
end.
To use it go to Menu > Tools > Scripting > do not select a script > go to Editor tab > paste the script > execute on all your movies only one time > done

.
Soulsnake.