Advertisement
Guest User

Untitled

a guest
May 25th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. ffmpeg version 3.2.10-1~deb9u1~bpo8+1 Copyright (c) 2000-2018 the FFmpeg developers
  2. built with gcc 4.9.2 (Debian 4.9.2-10)
  3.  
  4. /usr/bin/ffmpeg -y \
  5. -i "INPUT.MP4" \
  6. -i "WM.PNG" \
  7. -filter_complex " \
  8. [1:v]format=rgba,colorchannelmixer=aa=0.4[fg]; \
  9. [fg]setsar=1[logo]; \
  10. [0][logo]overlay=10:10" \
  11. "OUTPUT.MP4"
  12.  
  13. 1. The above works; and generates output.mp4 with an embedded overlay.
  14.  
  15. 2. I now want to add an 3rd input "fullscreen.jpg" and display this for 5 seconds in the output.mp4 at the end of the file.
  16.  
  17. 3. Do I also need a 4th input, to generate 5 seconds of silent audio?
  18.  
  19. How should I change the filter_complex?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement