From 271940977548b08daf71511e9826cd58ebfee4d1 Mon Sep 17 00:00:00 2001 From: Tom Goddard Date: Tue, 8 Oct 2024 12:05:13 -0700 Subject: [PATCH] Added link to ffmpeg compositing explanation in movie background example. --- movie_background/movie_background.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/movie_background/movie_background.md b/movie_background/movie_background.md index 93a6ca4..e2effdc 100644 --- a/movie_background/movie_background.md +++ b/movie_background/movie_background.md @@ -13,9 +13,8 @@ To combine the transparent image frames and the background into a movie I'll use $ cd ~/Desktop/movie $ ~/Desktop/ChimeraX-1.8.app/Contents/bin/ffmpeg -loop 1 -i background.png -i chimovie_Umkk-%05d.png -filter_complex overlay=shortest=1 movie.mp4 -Here is where I got this ffmpeg compositing trick +This ffmpeg compositing command is explained [here](https://stackoverflow.com/questions/10438713/overlay-animated-images-with-transparency-over-a-static-background-image-using-f). - [https://stackoverflow.com/questions/10438713/overlay-animated-images-with-transparency-over-a-static-background-image-using-f](https://stackoverflow.com/questions/10438713/overlay-animated-images-with-transparency-over-a-static-background-image-using-f)