fix crash in MediaUtils.getVideoThumbnail
This commit is contained in:
parent
73670b8576
commit
a0c399e2cf
1 changed files with 9 additions and 1 deletions
|
@ -113,7 +113,15 @@ fun getImageThumbnail(contentResolver: ContentResolver, uri: Uri, @Px thumbnailS
|
|||
|
||||
fun getVideoThumbnail(context: Context, uri: Uri, @Px thumbnailSize: Int): Bitmap? {
|
||||
val retriever = MediaMetadataRetriever()
|
||||
retriever.setDataSource(context, uri)
|
||||
try {
|
||||
retriever.setDataSource(context, uri)
|
||||
} catch (e: IllegalArgumentException) {
|
||||
Log.w(TAG, e)
|
||||
return null
|
||||
} catch (e: SecurityException) {
|
||||
Log.w(TAG, e)
|
||||
return null
|
||||
}
|
||||
val source = retriever.frameAtTime ?: return null
|
||||
return ThumbnailUtils.extractThumbnail(source, thumbnailSize, thumbnailSize, ThumbnailUtils.OPTIONS_RECYCLE_INPUT)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue