android捕获视频帧

前端之家收集整理的这篇文章主要介绍了android捕获视频帧前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要获得一个视频文件的框架(它可能在SD卡,缓存目录或应用程序目录).我在我的应用程序中有 android.media包,里面有MediaMetadataRetriever类.要将第一帧放入位图,我使用代码
public static Bitmap getVideoFrame(Context context,Uri videoUri) {
    MediaMetadataRetriever retriever = new MediaMetadataRetriever();
    try {
        retriever.setMode(MediaMetadataRetriever.MODE_CAPTURE_FRAME_ONLY);
        retriever.setDataSource(context,videoUri);
        return retriever.captureFrame();
    } catch (IllegalArgumentException ex) {
        throw new RuntimeException();
    } catch (RuntimeException ex) {
        throw new RuntimeException();
    } finally {
        retriever.release();
    }
}

但这不起作用.当我设置数据源时,它抛出异常(java.lang.RuntimeException:setDataSource Failed:status = 0x80000000).你知道怎么让这段代码工作吗?或者你有没有使用ffmpeg或其他外部库的类似(简单)解决方案? videoUri是一个有效的uri(媒体播放器可以播放来自该URI的视频)

解决方法

以下为我工作:
public static Bitmap getVideoFrame(FileDescriptor FD) {
        MediaMetadataRetriever retriever = new MediaMetadataRetriever();
        try {
            retriever.setDataSource(FD);
            return retriever.getFrameAtTime();
        } catch (IllegalArgumentException ex) {
            ex.printStackTrace();
        } catch (RuntimeException ex) {
            ex.printStackTrace();
        } finally {
            try {
                retriever.release();
            } catch (RuntimeException ex) {
            }
        }
        return null;
    }

如果您使用路径而不是filedescriptor也可以.

原文链接:https://www.f2er.com/android/316738.html

猜你在找的Android相关文章