Android中如何獲取視訊檔案的截圖、縮圖
阿新 • • 發佈:2019-01-08
背景
公司最近要求給我負責的APP加上視訊錄製和釋出的功能,我簡單的完成了基本的錄製和視訊壓縮功能,後來發現釋出介面需要上傳視訊的截圖,網上搜索了一下資料,在這裡整理一下。
程式碼實現
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
/**
* 獲取視訊檔案截圖
*
* @param path 視訊檔案的路徑
* @return Bitmap 返回獲取的Bitmap
*/
public
static Bitmap getVideoThumb(String path) {
MediaMetadataRetriever media =
new MediaMetadataRetriever();
media.setDataSource(path);
return
media.getFrameAtTime();
}
/**
* 獲取視訊檔案縮圖 API>=8(2.2)
*
* @param path 視訊檔案的路徑
* @param kind 縮圖的解析度:MINI_KIND、MICRO_KIND、FULL_SCREEN_KIND
* @return Bitmap 返回獲取的Bitmap
*/
public
static Bitmap getVideoThumb2(String path,
int kind) {
return
ThumbnailUtils.createVideoThumbnail(path, kind);
}
public
static Bitmap getVideoThumb2(String path) {
return
getVideoThumb2(path, MediaStore.Video.Thumbnails.FULL_SCREEN_KIND);
}
|
以上是獲取視訊檔案的截圖和縮圖的方法,你可能還需要把Bitmap儲存成檔案:
?1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/**
* Bitmap儲存成File
*
* @param bitmap input bitmap
* @param name output file's name
* @return String output file's path
*/
public
static String bitmap2File(Bitmap bitmap, String name) {
File f = new
File(Environment.getExternalStorageDirectory() + name +
".jpg" );
if
(f.exists()) f.delete();
FileOutputStream fOut =
null ;
try
{
fOut = new
FileOutputStream(f);
bitmap.compress(Bitmap.CompressFormat.JPEG,
100 , fOut);
fOut.flush();
fOut.close();
} catch
(IOException e) {
return
null ;
}
return
f.getAbsolutePath();
}
|