我正在尝试在半透明的h264视频上添加png水印(带有alpha channel )。通过使用叠加滤镜,我设法在视频中添加了水印。

ffmpeg -y -i input.mp4 -i watermark.png -filter_complex "[0][1] overlay=0:0" -c:v libx264 -an output.mp4

但是覆盖过滤器不提供透明选项。因此,我尝试使用混合过滤器。但是,当我使用原点解析时,会出现错误消息。
ffmpeg -y -i input.mp4 -i watermark.png -filter_complex "[0][1]blend=all_mode=overlay:all_opacity=0.3" -c:v libx264 -an output.mp4

输出:
  libavutil      55. 28.100 / 55. 28.100
  libavcodec     57. 48.101 / 57. 48.101
  libavformat    57. 41.100 / 57. 41.100
  libavdevice    57.  0.101 / 57.  0.101
  libavfilter     6. 47.100 /  6. 47.100
  libavresample   3.  0.  0 /  3.  0.  0
  libswscale      4.  1.100 /  4.  1.100
  libswresample   2.  1.100 /  2.  1.100
  libpostproc    54.  0.100 / 54.  0.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'input.mp4':
  Metadata:
    major_brand     : isom
    minor_version   : 512
    compatible_brands: isomiso2avc1mp41
    encoder         : Lavf57.41.100
  Duration: 00:00:45.08, start: 0.000000, bitrate: 1872 kb/s
    Stream #0:0(und): Video: h264 (Baseline) (avc1 / 0x31637661), yuv420p, 1920x1080, 1869 kb/s, 29.72 fps, 30 tbr, 16k tbn, 32k tbc (default)
    Metadata:
      handler_name    : VideoHandler
Input #1, png_pipe, from 'watermark.png':
  Duration: N/A, bitrate: N/A
    Stream #1:0: Video: png, rgba(pc), 64x64, 25 tbr, 25 tbn, 25 tbc
[Parsed_blend_0 @ 00750600] First input link top parameters (size 1920x1080, SAR 0:1) do not match the corresponding second input link bottom parameters (64x64, SAR 0:1)
[Parsed_blend_0 @ 00750600] Failed to configure output pad on Parsed_blend_0
Error configuring complex filters.
Invalid argument

结果看起来像参数的某些分辨率问题。因此,我尝试在混合之前缩放水印。
ffmpeg -y -i input.mp4 -i watermark.png -filter_complex "[0:0]scale=1920x1080[a]; [1:0]scale=1920x1080[b]; [a][b]blend=all_mode=overlay:all_opacity=0.3" -c:v libx264 -an output.mp4

FFMPEG使用这些参数。但是输出不是我预期的,因为水印已被拉伸(stretch)。
有没有想法将水印以不同的分辨率混合而不拉伸(stretch)到具有透明性的视频?

这是测试文件。 (ffmpeg版本3.1.2)
https://drive.google.com/open?id=0B2X3VLS01TogdHVJZ2I1ZC1GUUU
https://drive.google.com/open?id=0B2X3VLS01TogbjhuZTlBOFFpN1k

最佳答案

覆盖前使用lut滤镜

ffmpeg -y -i input.mp4 -i watermark.png -filter_complex
          "[1]lut=a=val*0.3[a];[0][a]overlay=0:0"
       -c:v libx264 -an output.mp4

关于filter - ffmpeg添加具有不同大小的半透明水印(png),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39591675/

10-12 06:57