I have created a video thumbnail from a video file. What I need to do is to create a java.io.File
from the Bitmap
in order to upload the thumbnail to a server. How could achieve this?
Bitmap thumb = ThumbnailUtils.createVideoThumbnail(videoFile.getPath(), MediaStore.Video.Thumbnails.FULL_SCREEN_KIND);
File thumbFile = ?
can use the following code:
you can also try this method: it does not convert bitmap to byte Array..