Dear All
I have a many video files that I want to group and merge into a single videos according to what it is filmed. I know how to merge videos by cli using mkvmerge.
However I would also like to:
- add a fade transition between videos
- at the beginning of each video I would like to put some description on the center-bottom which has to stay on for some time (like 5seconds or so)
there is any CLI solution to do that?
Regards
Pierre
+ Reply to Thread
Results 1 to 7 of 7
-
-
Try ffmpeg. See for example http://superuser.com/questions/778762/crossfade-between-2-videos-using-ffmpeg
-
Using the code you've linked above, that is
Code:ffmpeg -i 01.mkv -i 02.mkv -f lavfi -i color=black -filter_complex "[0:v]format=pix_fmts=yuva420p,fade=t=out:st=4:d=1:alpha=1,setpts=PTS-STARTPTS[va0];[1:v]format=pix_fmts=yuva420p,fade=t=in:st=0:d=1:alpha=1,setpts=PTS-STARTPTS+4/TB[va1]; [2:v]scale=960x720,trim=duration=9[over]; [over][va0]overlay[over1]; [over1][va1]overlay=format=yuv420[outv]" -vcodec libx264 -map [outv] out.mkv
I get this:
Code:Unrecognized option 'filter_complex' Failed to set value '[0:v]format=pix_fmts=yuva420p,fade=t=out:st=4:d=1:alpha=1,setpts=PTS-STARTPTS[va0];[1:v]format=pix_fmts=yuva420p,fade=t=in:st=0:d=1:alpha=1,setpts=PTS-STARTPTS+4/TB[va1];[2:v]scale=960x720,trim=duration=9[over];[over][va0]overlay[over1];[over1][va1]overlay=format=yuv420[outv]' for option 'filter_complex'
P
Similar Threads
-
Premiere CC - can't add transitions
By Ygramul in forum EditingReplies: 6Last Post: 12th Jan 2017, 14:31 -
How to Fade In/Fade Out Audio Clips in VSDC Free Video Editor?
By BSquared18 in forum EditingReplies: 15Last Post: 6th Mar 2015, 21:44 -
Ifoedit Add title
By Patapin in forum Authoring (DVD)Replies: 2Last Post: 9th Jan 2014, 07:00 -
Looking For Software to Create Menu- w/ Fade Transitions Between Chapters
By restmin in forum Authoring (DVD)Replies: 2Last Post: 13th Apr 2011, 16:36 -
transitions hard to add on multiple clips in premiere
By codemaster in forum EditingReplies: 11Last Post: 7th Jan 2011, 11:34