Leone Caramanica

Results 4 comments of Leone Caramanica

Awesome, waiting for use it!

Think I'm a little late but I was investigating on the same issue and find out that the output sizes must be a multiple of 16 (codec block size) ```java...

@rafayali I divided width and height by 3 but it's always rotated

Solution: ```java protected String doInBackground(String... paths) { try { MediaMetadataRetriever retriever = new MediaMetadataRetriever(); Bitmap bmp; retriever.setDataSource(paths[0]); bmp = retriever.getFrameAtTime(); String orient = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_ROTATION); int h; int w; if(orient.equals("0")) {...