簡體   English   中英

FFMPEG合並兩個視頻(串聯)

[英]FFMPEG merging two videos (Concatenation)

我一直在嘗試合並(連接)兩個具有相同高度和寬度的mp4視頻,但是會發生一些錯誤。 代碼是:

FFmpeg ffmpeg = FFmpeg.getInstance(EditVideoActivity.this);
            String list = generateList(new String[]{ActualVideoFile.getAbsolutePath(), path});
            try {
                ffmpeg.execute("ffmpeg -f concat -i " + list + " -c:v copy " + mergedVideo.getAbsolutePath(), new FFmpegExecuteResponseHandler() {
                    @Override
                    public void onStart() {
                        Log.e("Start", "Start");
                    }

                    @Override
                    public void onFinish() {
                        Log.e("FINISHED", "finish");
                    }


                    @Override
                    public void onSuccess(String message) {
                        Log.e("SUCCESS", message);
                    }

                    @Override
                    public void onProgress(String message) {
                        Log.e("PROGRESSSS", message);
                    }

                    @Override
                    public void onFailure(String message) {
                        Log.e("FAILURE", message);
                    }


                });
            } catch (FFmpegCommandAlreadyRunningException e) {
                e.printStackTrace();
                Log.e("FFMEG Exception", "" + e);
            }

Logcat:

/PROGRESSSS: ffmpeg version 0.11.1 Copyright (c) 2000-2012 the FFmpeg developers
06-09 01:24:09.400 8512-8512/com.myApp E/PROGRESSSS:   built on Dec 22 2014 12:52:34 with gcc 4.6 20120106 (prerelease)
06-09 01:24:09.400 8512-8512/com.myApp E/PROGRESSSS:   configuration: --arch=arm --cpu=cortex-a8 --target-os=linux --enable-runtime-cpudetect --prefix=/data/data/info.guardianproject.ffmpeg/app_opt --enable-pic --disable-shared --enable-static --cross-prefix=/home/n8fr8/dev/android/ndk/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86_64/bin/arm-linux-androideabi- --sysroot=/home/n8fr8/dev/android/ndk/platforms/android-16/arch-arm --extra-cflags='-I../x264 -mfloat-abi=softfp -mfpu=neon -fPIE -pie' --extra-ldflags='-L../x264 -fPIE -pie' --enable-version3 --enable-gpl --disable-doc --enable-yasm --enable-decoders --enable-encoders --enable-muxers --enable-demuxers --enable-parsers --enable-protocols --enable-filters --enable-avresample --enable-libfreetype --disable-indevs --enable-indev=lavfi --disable-outdevs --enable-hwaccels --enable-ffmpeg --disable-ffplay --disable-ffprobe --disable-ffserver --disable-network --enable-libx264 --enable-zlib
06-09 01:24:09.400 8512-8512/com.myApp E/PROGRESSSS:   libavutil      51. 54.100 / 51. 54.100
06-09 01:24:09.400 8512-8512/com.myApp E/PROGRESSSS:   libavcodec     54. 23.100 / 54. 23.100
06-09 01:24:09.400 8512-8512/com.myApp E/PROGRESSSS:   libavformat    54.  6.100 / 54.  6.100
06-09 01:24:09.400 8512-8512/com.myApp E/PROGRESSSS:   libavdevice    54.  0.100 / 54.  0.100
06-09 01:24:09.400 8512-8512/com.myApp E/PROGRESSSS:   libavfilter     2. 77.100 /  2. 77.100
06-09 01:24:09.400 8512-8512/com.myApp E/PROGRESSSS:   libswscale      2.  1.100 /  2.  1.100
06-09 01:24:09.400 8512-8512/com.myApp E/PROGRESSSS:   libswresample   0. 15.100 /  0. 15.100
06-09 01:24:09.400 8512-8512/com.myApp E/PROGRESSSS:   libpostproc    52.  0.100 / 52.  0.100
06-09 01:24:09.400 8512-8512/com.myApp E/PROGRESSSS: [NULL @ 0x2aeef3b0] Unable to find a suitable output format for 'ffmpeg'
06-09 01:24:09.400 8512-8512/com.myApp E/PROGRESSSS: ffmpeg: Invalid argument
06-09 01:24:09.400 8512-8512/com.myApp E/FAILURE: ffmpeg version 0.11.1 Copyright (c) 2000-2012 the FFmpeg developers
                                                        built on Dec 22 2014 12:52:34 with gcc 4.6 20120106 (prerelease)
                                                        configuration: --arch=arm --cpu=cortex-a8 --target-os=linux --enable-runtime-cpudetect --prefix=/data/data/info.guardianproject.ffmpeg/app_opt --enable-pic --disable-shared --enable-static --cross-prefix=/home/n8fr8/dev/android/ndk/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86_64/bin/arm-linux-androideabi- --sysroot=/home/n8fr8/dev/android/ndk/platforms/android-16/arch-arm --extra-cflags='-I../x264 -mfloat-abi=softfp -mfpu=neon -fPIE -pie' --extra-ldflags='-L../x264 -fPIE -pie' --enable-version3 --enable-gpl --disable-doc --enable-yasm --enable-decoders --enable-encoders --enable-muxers --enable-demuxers --enable-parsers --enable-protocols --enable-filters --enable-avresample --enable-libfreetype --disable-indevs --enable-indev=lavfi --disable-outdevs --enable-hwaccels --enable-ffmpeg --disable-ffplay --disable-ffprobe --disable-ffserver --disable-network --enable-libx264 --enable-zlib
                                                        libavutil      51. 54.100 / 51. 54.100
                                                        libavcodec     54. 23.100 / 54. 23.100
                                                        libavformat    54.  6.100 / 54.  6.100
                                                        libavdevice    54.  0.100 / 54.  0.100
                                                        libavfilter     2. 77.100 /  2. 77.100
                                                        libswscale      2.  1.100 /  2.  1.100
                                                        libswresample   0. 15.100 /  0. 15.100
                                                        libpostproc    52.  0.100 / 52.  0.100
                                                      [NULL @ 0x2aeef3b0] Unable to find a suitable output format for 'ffmpeg'
                                                      ffmpeg: Invalid argument

我正在使用hiteshsondhi88的FFMPEG庫。將提供任何幫助。 謝謝

代替當前的:

ffmpeg.execute("ffmpeg -f concat -i " + list + " -c:v copy " + mergedVideo.getAbsolutePath(), new FFmpegExecuteResponseHandler() {

嘗試像這樣使用它:

ffmpeg.execute("-f concat -i " + list + " -c:v copy " + mergedVideo.getAbsolutePath(), new FFmpegExecuteResponseHandler() {

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM