0

我似乎遇到了 MediaMetadataRetriever 和 FFmpegMediaMetadataRetriever 的一个奇怪问题。

我有一个要从中提取最后一帧的 videoView,并且我正在使用需要设置数据源的 MediaMetadataRetriever。

但是,每当我使用与 videoview 相同的 URI 设置此数据源时,我都会得到

    java.lang.IllegalArgumentException: setDataSource failed: status = 0xFFFFFFFF
        at wseemann.media.FFmpegMediaMetadataRetriever.setDataSource(Native Method)

即使我对以下内容进行硬编码:

retriever.setDataSource("android.resource://" + mActivity.packageName + "/" +  R.raw.step3_r0man2

它仍然什么都不做。但是,有问题的视频视图使用完全相同的 URL,并且播放视频没有问题

我还尝试了以下方法:

retriever.setDataSource(context, url)

结果相同。

这一切都是在 kotlin 的一个 android 片段中完成的。

open fun configureVideoPlayer() {
        videoUrl?.let { url ->
            vvStepVideo.setVideoURI(url)

            vvStepVideo.setOnPreparedListener(MediaPlayer.OnPreparedListener { player ->
                val videoRatio = player.videoWidth / player.videoHeight.toFloat()
                val screenRatio = vvStepVideo.width / vvStepVideo.height.toFloat()
                val scaleX = videoRatio / screenRatio
                if (scaleX >= 1f) {
                    vvStepVideo.scaleX = scaleX
                } else {
                    vvStepVideo.scaleY = 1f / scaleX
                }
                if (!vvStepVideo.isPlaying) {
                    vvStepVideo.start()
                    player.isLooping = shouldLoopVideo
                    audioTrack?.let {
                        configureAudio(it, false)
                        val currentLocale = ConfigurationCompat.getLocales(resources.configuration)[0]
                        if (!currentLocale.toString().startsWith("en_")) {
                            player.setVolume(0.0f, 0.0f)
                        }
                    }
                } else {
                    vvStepVideo.stopPlayback()
                }
            })

            if (!shouldLoopVideo) {
                vvStepVideo.setOnCompletionListener { player ->
                    btnReplayVideo.visibility = View.VISIBLE
                    btnScanQRCode.visibility = View.VISIBLE
                    tvFirstScan.visibility = View.GONE
                    blur.visibility = View.VISIBLE

                    val retriever = FFmpegMediaMetadataRetriever()
                    retriever.setDataSource(url.toString())
                    //always crashes here ^
//                    val bitmap = retriever.getFrameAtTime(vvStepVideo.currentPosition.toLong() * 1000)
//
//                    Blurry.with(context).from(bitmap).into(blur)

                }
            }
        }
    }

以下是依赖项:

implementation 'jp.wasabeef:blurry:4.0.0'
implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-core:1.0.15'
implementation 'com.github.wseemann:FFmpegMediaMetadataRetriever-native:1.0.15'

我也关注了: MediaMetadataRetriever setDataSource throws IllegalArgumentException

没有任何效果:(

不知道发生了什么。有没有另一种方法来获取视频的最后一帧,将其模糊,然后将其设置为图像视图?

4

0 回答 0