0
傢伙請人幫助我如何從服務器端的視頻?..如何從服務器視頻獲取視頻縮略圖?
我搜索了很多的堆棧,但沒有得到任何有用的解決方案中獲得視頻縮略圖?..
我用FFmpegMediaMetadataRetriever這個庫..我面臨着一些錯誤..
傢伙請人幫助我如何從服務器端的視頻?..如何從服務器視頻獲取視頻縮略圖?
我搜索了很多的堆棧,但沒有得到任何有用的解決方案中獲得視頻縮略圖?..
我用FFmpegMediaMetadataRetriever這個庫..我面臨着一些錯誤..
視頻縮略圖,服務器
final File myFile = new File(selectedPath);
Bitmap bitmap = ThumbnailUtils.createVideoThumbnail(selectedPath, MediaStore.Video.Thumbnails.MINI_KIND);
String thumbnail = getStringImage(bitmap);
//Server side
params.put("thumnails",thumbnail);
public String getStringImage(Bitmap bmp){
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] imageBytes = baos.toByteArray();
String encodedImage = Base64.encodeToString(imageBytes, Base64.DEFAULT);
return encodedImage;
}