1

我正在制作一个从外部源流式传输视频并将其显示在我活动中的视频视图中的 android 应用程序。流工作正常,但我无法在我的 SD 卡上保存帧。这是我的代码,其中 vv 是 videoview:

int currentPosition = vv.getCurrentPosition(); //in millisecond

        MediaMetadataRetriever mediaMetadataRetriever = new MediaMetadataRetriever();
        mediaMetadataRetriever.setDataSource(viewSource);

        Bitmap bmFrame = mediaMetadataRetriever.getFrameAtTime(currentPosition * 1000); //unit in microsecond

        if(bmFrame == null){
             Toast.makeText(MainActivity.this, 
               "bmFrame == null!", 
               Toast.LENGTH_LONG).show();
            }else{
             AlertDialog.Builder myCaptureDialog = 
               new AlertDialog.Builder(MainActivity.this);
             ImageView capturedImageView = new ImageView(MainActivity.this);
             capturedImageView.setImageBitmap(bmFrame);
             LayoutParams capturedImageViewLayoutParams = 
               new LayoutParams(LayoutParams.WRAP_CONTENT, 
                 LayoutParams.WRAP_CONTENT);
             capturedImageView.setLayoutParams(capturedImageViewLayoutParams);

             myCaptureDialog.setView(capturedImageView);
             myCaptureDialog.show();

这是我的视频测试网址:

public String viewSource = "rtsp://184.72.239.149/vod/mp4:BigBuckBunny_115k.mov";

我尝试为 mediametadataretriver 的“setdatasource”设置 viewSourc,就像我的视频的网址一样,但它总是返回空位图...

问题出在哪里?

谢谢

4

1 回答 1

3

这个类有很多问题,我认为其中之一是从外部源检索的框架。我建议你使用这个外部库。您只需将其添加到您的项目中,然后像使用 mediametadataretriever 类一样使用该类。

希望有用

于 2013-10-08T14:14:54.443 回答