Created
May 6, 2017 17:19
-
-
Save paulhayes/0c7b99c5dfec94565fccee30837843ad to your computer and use it in GitHub Desktop.
FFMpeg Overlay Image function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function overlayImage(){ | |
| echo "overlayImage {input_video} {input_image} {output_video}" | |
| ffmpeg -i "$1" -i "$2" -filter_complex "[0:v][1:v] overlay=0:0" "$3" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment