Navaneeth Sen
Navaneeth Sen

Reputation: 6466

How to get the size of the video in Kilobytes?

Is it possible to get the size of the video in kilobytes in android? Is there any API for that?

Update I am trying to fetch the video from a http:// location.

Upvotes: 1

Views: 3428

Answers (1)

Reno
Reno

Reputation: 33792

File file = new File("xxx.flv");

long length = file.length();

length = length/1024;

Upvotes: 15

Related Questions