Compare commits
2 commits
3f603ae136
...
4dcf945a62
Author | SHA1 | Date | |
---|---|---|---|
4dcf945a62 | |||
3eced0eaef |
2 changed files with 9 additions and 3 deletions
2
edit.py
2
edit.py
|
@ -251,6 +251,8 @@ if __name__ == '__main__':
|
|||
'oshash': clip['streams'][i],
|
||||
'url': '%s/%s/%sp%s.mp4' % (base_url, clip['item'], stream_resolution, i + 1),
|
||||
'item': clip['item'],
|
||||
'item-in': clip['in'],
|
||||
'item-out': clip['out'],
|
||||
'annotation': clip.get('annotation'),
|
||||
'resolution': info['resolution'],
|
||||
'in': stream_in,
|
||||
|
|
|
@ -122,6 +122,7 @@ for clip in edit:
|
|||
]
|
||||
cmd = [
|
||||
'ffmpeg',
|
||||
'-hide_banner',
|
||||
'-nostats', '-loglevel', 'error',
|
||||
] + audio + [
|
||||
'-ss', str(clip['in']),
|
||||
|
@ -160,9 +161,12 @@ for clip in edit:
|
|||
txt = output + '.txt'
|
||||
with open(txt, 'w') as fd:
|
||||
fd.write('file ' + '\nfile '.join(files))
|
||||
cmd = ['ffmpeg',
|
||||
cmd = [
|
||||
'ffmpeg',
|
||||
'-hide_banner',
|
||||
'-nostats', '-loglevel', 'error',
|
||||
'-y', '-f', 'concat', '-safe', '0', '-i', txt, '-c', 'copy', output]
|
||||
'-y', '-f', 'concat', '-safe', '0', '-i', txt, '-c', 'copy', output
|
||||
]
|
||||
|
||||
run(cmd)
|
||||
os.unlink(txt)
|
||||
|
|
Loading…
Reference in a new issue