如何在videoView android中拍摄当前视频的屏幕截图?

问题描述 投票:0回答:1

我正在使用视频视图播放媒体,我想拍摄当前帧的屏幕快照。我找到了一些解决方案,其中包括使用mediaMetaDataRetriever,但是该方法太慢了,在许多情况下效果也不佳。我无法在纹理视图上使用媒体播放器来捕获我知道该方法的视图,因为默认情况下,我需要在应用程序中使用媒体控件。有什么方法可以使该过程更快?我的代码:

 public Bitmap getBitmapVideoView(){
        MediaMetadataRetriever mediaMetadataRetriever;
        mediaMetadataRetriever = new MediaMetadataRetriever();
        try {
            int currentPosition =videoView.getCurrentPosition();
            mediaMetadataRetriever.setDataSource(getVideoURL(),new HashMap<String, String>());
            Bitmap bitmap = mediaMetadataRetriever.getFrameAtTime(currentPosition*1000);
            if (bitmap != null) {
//                Canvas canvas = new Canvas(bitmap);
//                textureview.draw(canvas);
                return bitmap;
            }
            else{
                return null;
            }
        }
        catch (Exception e){
            Log.i("Errorrr",e.getMessage());
            return null;
        }
        finally {
            try {
                mediaMetadataRetriever.release();
            }
            catch (Exception e){
                e.printStackTrace();
            }
        }
    }

方法:

Bitmap bitmap = Screenshot.INSTANCE.with((MainActivity)activity).setView(findViewById(R.id.relative)).setQuality(Quality.HIGH).getScreenshot();
                    LayoutInflater inflater = getLayoutInflater();
                    Toast toastShot = null;
                    View layout = inflater.inflate(R.layout.layout, (ViewGroup) findViewById(R.id.screen));
                    ImageView image = (ImageView) layout.findViewById(R.id.shot_image);
                    image.setImageBitmap(bitmap);
                    toastShot = new Toast(getApplicationContext());
                    toastShot.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
                    toastShot.setDuration(Toast.LENGTH_LONG);
                    toastShot.setView(layout);
                    toastShot.show();
android media android-videoview
1个回答
0
投票

获取屏幕快照,您可以使用此库

implementation 'com.github.MindorksOpenSource:screenshot:v0.0.1'

并且要获取屏幕截图,只需在按钮单击或任何其他事件上调用此功能

 var b = Screenshot.with(activity!!).setView(rl_imageText).setQuality(Quality.HIGH).getScreenshot()

注意:rl_imageText =这是我正在截屏的xml相对布局的ID。

它将为您提供屏幕截图的位图,并将其保存到存储器中或使用以下提到的功能获取路径

private fun getImageUriFromBitmap(context: Context, bitmap: Bitmap): Uri {
    val bytes = ByteArrayOutputStream()
    bitmap.compress(Bitmap.CompressFormat.JPEG, 100, bytes)
    val path = MediaStore.Images.Media.insertImage(context.contentResolver, bitmap,"Title",null)
    return Uri.parse(path.toString())
}

注意:如果无法使用请提及,以便我为您提供其他解决方案。

© www.soinside.com 2019 - 2024. All rights reserved.