Open mifi opened 4 years ago
I would also like to see possibility to simply and fast add black screen pause between clips. For example to add it to this menu like "add pause before clip", "add pause after clip" and with possibility to somehow change length of pause.
This was requested by email:
The problem with this, as can be seen in https://superuser.com/a/576568/658247 - is that we need to exactly match all audio/video parameters of the black video with the existing files. Maybe it can be done with a combination of
ffprobe
and map those parameters toffmpeg
args, but it will surely not work for all files and codec parameters.As a workaround, it might be possible to do this manually by creating a black ffmpeg video of length X and matching up all parameters:
Then one can take this file and concat/merge it with the other files using LosslessCut...
This has similarities with #126 because it's about matching codec parameters.
Edit: