Reputation: 6466
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
Reputation: 33792
File file = new File("xxx.flv");
long length = file.length();
length = length/1024;
Upvotes: 15