首页 > 解决方案 > 视频加水印命令

问题描述

我尝试在一个视频上添加水印,但 FFmpeg 命令不会执行,错误代码为 3037。我运行相同的代码来修剪视频,视频被成功修剪,因此资产文件夹中没有问题,inputpath或者outputpath我也有ic_watermark.png。我尝试使用来自Drawable相同错误代码的图像。

所以这是我尝试运行并将水印放在右上角的命令:

String[] cmd = new String[]{"-i", videoInputPath, "-i", imagePath, "-filter_complex", "overlay=main_w-overlay_w-5:main_h-overlay_h-5", videoOutPath };

这是整个方法:

private void executeFFmepg(String inputPath, String outputPath, String customCommand){
final Command command = videoKit.createCommand()
        .overwriteOutput()
        .inputPath(inputPath)
        .outputPath(outputPath)
        .customCommand(customCommand)
        .experimentalFlag()
        .build();
 new AsyncCommandExecutor(command, this).execute(); 
 }

我使用了一个基于FFmpeghttps ://github.com/inFullMobile/videokit-ffmpeg-android 的库, 并且描述说这基本上是使用 CLI 参数调用 FFmpeg main()

这就是我从中得到的Log

ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developers
  built with gcc 4.8 (GCC)
  configuration: --target-os=linux --cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- --arch=arm --cpu=cortex-a8 --enable-runtime-cpudetect --sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot --enable-pic --enable-libx264 --enable-libass --enable-libfreetype --enable-libfribidi --enable-libmp3lame --enable-fontconfig --enable-pthreads --disable-debug --disable-ffserver --enable-version3 --enable-hardcoded-tables --disable-ffplay --disable-ffprobe --enable-gpl --enable-yasm --disable-doc --disable-shared --enable-static --pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config --prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a --extra-cflags='-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all' --extra-ldflags='-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie' --extra-libs='-lpng -lexpat -lm' --extra-cxxflags=
  libavutil      55. 17.103 / 55. 17.103
  libavcodec     57. 24.102 / 57. 24.102
  libavformat    57. 25.100 / 57. 25.100
  libavdevice    57.  0.101 / 57.  0.101
  libavfilter     6. 31.100 /  6. 31.100
  libswscale      4.  0.100 /  4.  0.100
  libswresample   2.  0.101 /  2.  0.101
  libpostproc    54.  0.100 / 54.  0.100
05-29 15:35:08.591 24037-24037/com.cleatchaser D/FFmpeg: Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/DCIM/Camera/20180406_140202.mp4':
  Metadata:
    major_brand     : isom
    minor_version   : 0
05-29 15:35:08.596 24037-24037/com.cleatchaser D/FFmpeg:     compatible_brands: isom3gp4
    creation_time   : 2018-04-06 12:02:25
  Duration: 00:00:15.06, start: 0.000000, bitrate: 17185 kb/s
    Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080, 17029 kb/s, 29.95 fps, 30 tbr, 90k tbn, 180k tbc (default)
05-29 15:35:08.601 24037-24037/com.cleatchaser D/FFmpeg:     Metadata:
      rotate          : 90
      creation_time   : 2018-04-06 12:02:25
      handler_name    : VideoHandle
    Side data:
05-29 15:35:08.606 24037-24037/com.cleatchaser D/FFmpeg:       displaymatrix: rotation of -90.00 degrees
    Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 123 kb/s (default)
    Metadata:
      creation_time   : 2018-04-06 12:02:25
05-29 15:35:08.611 24037-24037/com.cleatchaser D/FFmpeg:       handler_name    : SoundHandle
05-29 15:35:08.756 24037-24037/com.cleatchaser D/FFmpeg: Input #1, png_pipe, from '/storage/emulated/0/watermark.png':
  Duration: N/A, bitrate: N/A
    Stream #1:0: Video: png, rgba(pc), 856x1324, 25 tbr, 25 tbn, 25 tbc

我尝试了许多类似问题的答案,但都没有奏效。

错误可能在引号中吗?

我没有使用 FFmpeg 的经验,因此非常感谢任何帮助。谢谢

标签: androidvideoffmpegwatermark

解决方案


如果将来有人对在视频上添加水印有疑问,您可以这样做。这可以使用 writingminds 编译的 FFmpeg 库来完成: http ://writingminds.github.io/ffmpeg-android-java/

按照说明如何设置FFmpeg到您的项目中。之后通过运行此命令,我可以在视频上添加水印:

        String commands[]={"-y","-i",videoInputPath,"-i", imagePath,"-filter_complex","[1:v]scale=200:200 [ovrl], [0:v][ovrl]overlay=main_w-overlay_w-5:main_h-overlay_h-5:enable='between(t,"+0+","+timeInSec+")'","-codec:a","copy","-strict","-2","-c:v","libx264","-preset","ultrafast",videoOutPath};

videoInputPath- 是视频的路径

imagePath- 是来自外部存储的图像的路径。我尝试使用来自的图像,Drawable但没有发现它有效(不是说不可能)

timeInSec- 是您可以从中获得的视频长度MediaMetadataRetriever

    File videoFile = new File(path);
    MediaMetadataRetriever retriever = new MediaMetadataRetriever();
    retriever.setDataSource(this, Uri.fromFile(videoFile));
    String time = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION);
    long timeInMillisec = Long.parseLong(time );
    timeInSec = (int) (timeInMillisec /1000);

videoOutPath- 放置水印后将保存视频的路径

上面的命令还会缩放水印,200:200您可以根据需要进行调整并将其放在右下角。


推荐阅读