Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Take a look at the FFMpeg documentation for concatenating, and see what you can come up with.</p> <blockquote> <p><a href="http://ffmpeg.org/faq.html#How-can-I-join-video-files_003f" rel="nofollow">How can I join video files?</a></p> </blockquote> <p>If it were me, I'd look into something that would do something along these lines:</p> <ol> <li><p>Use a pre-made video of the black frames you're trying to add on to the end (in the same folder as the video you're adding it to) and check if the videos have the same format. I'd make this pre-made video a default format that is commonly used and has the ability to be concatenated (MPEG).</p></li> <li><p>If the videos have different formats, figure out the format of the video you're adding to and use ffmpeg to encode it to the same format as your black video. You could also check if the video you're adding to is in a proper format for concatenating, and just change the black video to that format for speed (could also just have a bunch of pre-made black videos of all the formats that allow concatenating).</p></li> <li><p>Once both videos are in the same format, concatenate them. If you want them in a different format, use ffmpeg again to encode them to your choice. Note that the -same_quant option or a high bit-rate setting should be passed into ffmpeg to keep a high quality through all conversions, as per the ffmpeg documentation.</p></li> </ol> <p>The only downside here if you can get this to work is that you'd have to make the video of the frames you're adding on separately instead of on the fly or by command.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload