Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android get file size of video from gallery

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();
                    }
                }
            }
like image 660
jobin Avatar asked Dec 25 '16 15:12

jobin


1 Answers

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

like image 64
Mr Robot Avatar answered Oct 13 '22 21:10

Mr Robot