Linked Questions

1 vote
0 answers
63 views

I refer this answer for concating videos with fade in-out Transition. But for CrossFade it was not doing any concate function. Fade in Fade out Transition code [-y, -i, /storage/emulated/0/...
Nikunj Paradva's user avatar
15 votes
2 answers
7k views

Doing a crossfade between two pieces of video content is actually quite complicated in FFmpeg. There is no “crossfade” filter like there is for audio. What’s an efficient way to do it?
Mark Gerolimatos's user avatar
4 votes
2 answers
5k views

This Super User answer crossfade between 2 videos using ffmpeg has got me so far, but now that I have tried many solutions and seen every SO link out there, it's time to ask you all for help. I am ...
Jonathan_W's user avatar
2 votes
1 answer
5k views

I want to merge two video files with a cross-fade effect between them (just about a second long), but without fading to black or white or any colour at all - it has to be a smooth transition from one ...
pafflick's user avatar
  • 101
2 votes
2 answers
3k views

I would like to convert a series of webcam images into an animation/film/movie/video. Because there is a lot of motion between images, I want a fading/blending transition between images. Many Windows ...
None's user avatar
  • 665
3 votes
1 answer
4k views

I am trying to cross-fade multiple images. I found some helpful piece of code in this Super User thread. So far I am stuck at this point: ffmpeg -loop 1 -i img0.jpg -loop 1 -i img1.jpg -i img2.jpg -f ...
nik1337's user avatar
  • 31
0 votes
1 answer
3k views

"crossfade between 2 videos using ffmpeg" In the above link I found a way to add fade between 2 videos, but losing the audio. How can I do the same without lose the audio? This is the command line I'...
RLT's user avatar
  • 3
1 vote
1 answer
541 views

I am currently using the command from this question to crossfade two videos: crossfade between 2 videos using ffmpeg My command: ffmpeg -i firstVideo.mp4 -i secondVideo.mp4 -f lavfi -i color=black -...
kmoney12's user avatar
  • 133
3 votes
1 answer
864 views

I can successfully join a couple of videos into one (using this method) with a nice cross-fade effect in between, but the output video contains no audio. I'm using the -filter_complex command. I've ...
pafflick's user avatar
  • 101
0 votes
1 answer
303 views

I've been using the following crossfade from Gyan as part of my workflow for a while, as I've found it to look superior to other crossfade solutions and easy to adapt for different inputs. However, I'...
Hashim Aziz's user avatar
  • 14.2k