ktba
ktba copied to clipboard
Concatenating not working
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?
For anyone reading, you can manually concat using FFMPEG like this:
- create a file called "vidlist.txt"
- 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.
- 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.
Set the audio codec to None for the concatenating to work. The audio will be added if mix down is checked.