Hi, I'd like to get a certain value from an avi video, but I'm not really sure how to do this. Byte 4 - 7 contains the real size of an avi video. These 4 bytes need to be converted to a long integer (I think).

In the example (screenshot):

Byte 4 = EA
Byte 5 = B9
Byte 6 = 8C
Byte 7 = 0E

EA B9 8C 0E = 244103658 bytes (original file size).

Does anybody know how to get Byte 4 - 7 and convert it, so I get the long integer value?

Thanks.