本文介绍了使用MediaMetadataRetriever-setDataSource()上的IllegalArgumentException从存储设备中的视频中提取帧的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想从我的应用程序的视频中提取一帧.该视频是从我的存储设备中选择的.尝试调用setDataSource后,我收到了IllegalArgumentException.
I want to extract one frame from video in my app. The video is chosen from my storage device. After trying to call setDataSource I'm getting an IllegalArgumentException.
这是我的代码的一部分:
Here is the part of my code:
MediaMetadataRetriever med = new MediaMetadataRetriever();
med.setDataSource(imageUri.toString());
imageUri的值为:
A value of imageUri is:
content://com.android.providers.media.documents/document/video%3A59728
我的视频路径格式错误吗?我也尝试过使用FFmpegMediaMetadataRetriever.
Is the path of my video in wrong format?I have also tried to use FFmpegMediaMetadataRetriever.
推荐答案
使用
med.setDataSource(context, imageUri)
如果不起作用,请使用MediaStore并获取MediaStore URI
if it does not work use MediaStore and get MediaStore URI
这篇关于使用MediaMetadataRetriever-setDataSource()上的IllegalArgumentException从存储设备中的视频中提取帧的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!