Python: fails at concatenation stage, no pulverize_input_files.txt #5

Closed
opened 2017-05-31 11:56:09 -07:00 by unfa · 1 comment
unfa commented 2017-05-31 11:56:09 -07:00 (Migrated from github.com)

I tried Pulverize Python version today and it rendered the individual chunks fine, but then crashed and left them unconcatenated:

(...)
INFO:pulverize:Render processes complete.
Traceback (most recent call last):
  File "./pulverize.py", line 146, in <module>
    join_chunks(args, outdir)
  File "./pulverize.py", line 113, in join_chunks
    with open(file_list, 'w') as fp:
IOError: [Errno 2] No such file or directory: '//Render/pulverize_input_files.txt'

Apart from fixing this issue, what can I do right now to concatenate these files to not re-render the whole thing?

I tried Pulverize Python version today and it rendered the individual chunks fine, but then crashed and left them unconcatenated: ``` (...) INFO:pulverize:Render processes complete. Traceback (most recent call last): File "./pulverize.py", line 146, in <module> join_chunks(args, outdir) File "./pulverize.py", line 113, in join_chunks with open(file_list, 'w') as fp: IOError: [Errno 2] No such file or directory: '//Render/pulverize_input_files.txt' ``` Apart from fixing this issue, what can I do right now to concatenate these files to not re-render the whole thing?
unfa commented 2017-05-31 12:05:17 -07:00 (Migrated from github.com)

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.mkv

I used advice from FFmpeg website: https://trac.ffmpeg.org/wiki/Concatenate

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.mkv` I used advice from FFmpeg website: https://trac.ffmpeg.org/wiki/Concatenate
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
sciactive/pulverize#5
No description provided.