I have to upload a video from gallery to VideoView. But i want to get the size of the video in bytes. Please help me !! This is my code:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Intent intent=new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
intent.setType("video/*");
startActivityForResult(intent,1);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if(requestCode==1&&resultCode== Activity.RESULT_OK){
try{
String path=data.getData().toString();
videoView.setVideoPath(path);
videoView.requestFocus();
videoView.start();
}
catch (Exception ex){
ex.printStackTrace();
}
}
}
You just need to create a new File object such as...
String filepath = Environment.getExternalStorageDirectory() + "/file.mp4";
File file = new File(filepath);
long length = file.length();
length = length/1024;
Toast.makeText(getActivity(), "Video size:"+length+"KB",
Toast.LENGTH_LONG).show();
this gives the size of the file, not the image
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With