Advertisement
Guest User

Untitled

a guest
May 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. /usr/bin/ffmpeg -y \
  2. -i "INPUT-MP4" \
  3. -i "WM-PNG" \
  4. -filter_complex " \
  5. [1:v]format=rgba,colorchannelmixer=aa=0.4[fg]; \
  6. [fg]setsar=1[logo]; \
  7. [0][logo]overlay=10:10" \
  8. "output.mp4"
  9.  
  10. The above works; and generates output.mp4 with an embedded overlay.
  11.  
  12. 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.
  13.  
  14. Do I also need a 4th input, to generate 5 seconds of silent audio?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement