Python: fails at concatenation stage, no pulverize_input_files.txt #5
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
sciactive/pulverize#5
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I tried Pulverize Python version today and it rendered the individual chunks fine, but then crashed and left them unconcatenated:
Apart from fixing this issue, what can I do right now to concatenate these files to not re-render the whole thing?
Ok, so I was able to concatenate the files with this bash command:
for f in *.mkv; do echo "file $f" >> list.txt; done; ffmpeg -f concat -safe 0 -i list.txt -c copy concatenated.mkvI used advice from FFmpeg website: https://trac.ffmpeg.org/wiki/Concatenate