ktba icon indicating copy to clipboard operation
ktba copied to clipboard

Concatenating not working

Open NonMeme opened this issue 4 years ago • 2 comments

The Concatenating feature for ParallelRender doesn't create a combined file for me.

Maybe try looking at a script like VSRender to see what it does. Whenever I concatenate with that, it works. Maybe it has to do with it being a separate feature there and not automatically done like in ParallelRender?

NonMeme avatar Feb 08 '21 21:02 NonMeme

For anyone reading, you can manually concat using FFMPEG like this:

  1. create a file called "vidlist.txt"
  2. list all the parts of your video in that file like this:

file 'C:\VSE\part_01.mp4' file 'C:\VSE\part_02.mp4' file 'C:\VSE\part_03.mp4' etc, etc.

  1. then run this command (or use a batch file): ffmpeg -f concat -safe 0 -i vidlist.txt -c copy output.mp4

This will take all the videos in your list and concat them as "output.mp4".

Its a work around for now, but it works. I might look into this addon's python code to figure out whats going wrong with the concat part -- it should be pretty simple actually, so I'm not sure what's going wrong.

JamesO2x avatar Oct 26 '22 21:10 JamesO2x

Set the audio codec to None for the concatenating to work. The audio will be added if mix down is checked.

tin2tin avatar May 03 '23 07:05 tin2tin