Answer the question
In order to leave comments, you need to log in
How to apply an effect with ffmpeg for a certain time?
There is a command for FFMPEG that imposes a sepia effect on the video
ffmpeg -threads 2 -y -i m1.mp4 -strict experimental -filter_complex [0:v]colorchannelmixer=.435:.123:.112:0:.563:.124:.124:0:.324:.554:.133[colorchannelmixed];[colorchannelmixed]eq=1.0:0:1.3:2.4:1.0:1.0:1.0:1.0[color_effect] -map [color_effect] -map 0:a -vcodec mpeg4 -crf 23 -b:v 1000K -maxrate 1500K -bufsize 500K m3v.mp4
Answer the question
In order to leave comments, you need to log in
see Timeline editing . Examples:
smartblur = enable='between(t,10,3*60)',
curves = enable='gte(t,3)' : preset=cross_process
Expressions of type between()
and are gte()
described in Expression evaluationffmpeg -filters
will show which of the filters support timeline (letter "T"). colorchannelmixer
and eq
from your team - support:Filters:
T.. = Timeline support
.S. = Slice threading
..C = Command support
A = Audio input/output
V = Video input/output
N = Dynamic number and/or type of input/output
| = Source or sink filter
TSC colorchannelmixer V->V Adjust colors by mixing color channels.
T.C eq V->V Adjust brightness, contrast, gamma, and saturation.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question