Skip to content

Instantly share code, notes, and snippets.

@paulhayes
Created May 6, 2017 17:19
Show Gist options
  • Select an option

  • Save paulhayes/0c7b99c5dfec94565fccee30837843ad to your computer and use it in GitHub Desktop.

Select an option

Save paulhayes/0c7b99c5dfec94565fccee30837843ad to your computer and use it in GitHub Desktop.
FFMpeg Overlay Image function
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