美文网首页
android 获取视频缩略图

android 获取视频缩略图

作者: justin_pan | 来源:发表于2016-11-16 15:17 被阅读320次

使用接口类 MediaMetadataRetriever 获取视频缩略图

    public Bitmap getVideoThumbnail(String filePath) {  
    Bitmap bitmap = null;  
    MediaMetadataRetriever retriever = new MediaMetadataRetriever();  
    try {  
        retriever.setDataSource(filePath);  
        bitmap = retriever.getFrameAtTime();  
    }   
    catch(IllegalArgumentException e) {  
        e.printStackTrace();  
    }   
    catch (RuntimeException e) {  
        e.printStackTrace();  
    }   
    finally {  
        try {  
            retriever.release();  
        }   
        catch (RuntimeException e) {  
            e.printStackTrace();  
        }  
    }  
    return bitmap;  
}  

其中函数getFrameAtTime()有其他重载函数,该函数会随机选择一帧抓取,如果想要指定具体时间的缩略图,可以用函数getFrameAtTime(long timeUs), getFrameAtTime(long timeUs, int option),具体如何使用可以查doc。

相关文章

网友评论

      本文标题:android 获取视频缩略图

      本文链接:https://www.haomeiwen.com/subject/kljrpttx.html