David542
David542

Reputation: 110312

Add a cross-fade to a ProRes clip

I have a ProRes 422 HQ trailer clip that is about 70 seconds. I would like to add a 0.5s cross fade (to black/silence) at the head and tail of the clip. The output file must have the exact same characteristics as the input file.

Where I'm starting at is something like:

ffmpeg -i "concat:??|trailer.mov|??" -c copy output.mov

Is there a way to do this with ProRes 422 in ffmpeg. If not, what other tools might work for this kind of thing?

Upvotes: 0

Views: 36

Answers (1)

llogan
llogan

Reputation: 133973

Use the fade filter:

ffmpeg -i input.mov -vf "fade=t=in:d=0.5,fade=t=out:d=0.5:start_time=69.5" -c:v prores -c:a copy output.mov

Upvotes: 1

Related Questions