You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 to ffmpeg 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:
# Note that if you also have audio, you have to do the same to the audio track (generate silence)
ffmpeg -t 2 -f lavfi -i color=c=black:s=640x480:r=30 -c:v libx264 -pix_fmt yuv420p output.mp4
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.
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:
# Note that if you also have audio, you have to do the same to the audio track (generate silence) ffmpeg -t 2 -f lavfi -i color=c=black:s=640x480:r=30 -c:v libx264 -pix_fmt yuv420p output.mp4
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:
The text was updated successfully, but these errors were encountered: