Adicionando marcas d'água / logotipos a vídeos no mencoder

3

Como adiciono uma marca d'água ou logotipo a um vídeo usando o mencoder?

    
por quack quixote 22.03.2010 / 07:12

2 respostas

2

Você precisa da opção bmovl (Sobreposição de bitmap)

   bmovl=hidden:opaque:fifo
          The bitmap overlay filter reads bitmaps from a FIFO and displays
          them  on  top of the movie, allowing some transformations on the
          image.  Also see TOOLS/bmovl-test.c for a small bmovl test  proâ€
          gram.
             <hidden>
                  Set  the  default value of the ’hidden’ flag (0=visible,
                  1=hidden).
             <opaque>
                  Set the default value of the ’opaque’ flag  (0=transparâ€
                  ent, 1=opaque).
             <fifo>
                  path/filename   for  the  FIFO  (named  pipe  connecting
                  ’mplayer -vf bmovl’ to the controlling application)

          FIFO commands are:
             RGBA32 width height xpos ypos alpha clear
                  followed by width*height*4 Bytes of raw RGBA32 data.
             ABGR32 width height xpos ypos alpha clear
                  followed by width*height*4 Bytes of raw ABGR32 data.
             RGB24 width height xpos ypos alpha clear
                  followed by width*height*3 Bytes of raw RGB24 data.
             BGR24 width height xpos ypos alpha clear
                  followed by width*height*3 Bytes of raw BGR24 data.
             ALPHA width height xpos ypos alpha
                  Change alpha transparency of the specified area.
             CLEAR width height xpos ypos
                  Clear area.
             OPAQUE
                  Disable all alpha transparency.  Send "ALPHA 0 0 0 0  0"
                  to enable it again.
             HIDE
                  Hide bitmap.
             SHOW
                  Show bitmap.

          Arguments are:
             <width>, <height>
                  image/area size
             <xpos>, <ypos>
                  Start blitting at position x/y.
             <alpha>
                  Set  alpha  difference.  If you set this to -255 you can
                  then send a sequence of ALPHA-commands to set  the  area
                  to -225, -200, -175 etc for a nice fade-in-effect! ;)
                     0:    same as original
                     255:  Make everything opaque.
                     -255: Make everything transparent.

             <clear>
                  Clear the framebuffer before blitting.
                     0:  The  image will just be blitted on top of the old
                     one, so you do not need to send 1.8MB of RGBA32  data
                     every time a small part of the screen is updated.
                     1: clear
    
por 22.03.2010 / 10:01
-2

Eu sei que o OP perguntou como no mencoder, mas é bastante complicado e não funciona em nenhuma versão mais recente do Linux que eu tentei. As informações, comandos e fontes são o que eu procurei depois de solucionar problemas e não conseguir fazer o bmovl funcionar no mencoder. Eu recebo um erro de " erro bmovl mencoder vf_bmovl: Comando desconhecido: ''. Ignorando. "

O que recomendo é usar o ffmpeg:

ffmpeg -i  yourvideo.mp4 -i yourwatermark.jpg -filter_complex "overlay=10:10" outputfile.mp4

Se estiver usando o ffmpeg do Linux Mint está faltando nos repositórios padrão, então você precisará ler isto sobre a instalação de um PPA de terceiros para fazê-lo funcionar.

    
por 23.05.2017 / 21:37