Android video trimming via ffmpeg

后端 未结 4 761
半阙折子戏
半阙折子戏 2020-12-16 05:46

I have downloaded video trimming code from github from this link.

It’s working perfectly for the first time, but when I try to run it for the second time the code cr

4条回答
  •  独厮守ぢ
    2020-12-16 06:09

    Do one Thing

    If You have Installed ffmpeg4android_os lib then you just need to comment 1 line of Method StopTranscoding like this

    public void stopTranscoding() {
            Log.d(Prefs.TAG, "stopTranscoding called");
            if (_transcodeBackground != null) {
                //_transcodeBackground.forceCancel();
            }
        }
    

    that all....

提交回复
热议问题