Skip to content

Commit

Permalink
Merge pull request #141 from raecasey/patch-4
Browse files Browse the repository at this point in the history
remove 'consolidate' from output file name
  • Loading branch information
kieranjol committed Jan 11, 2017
2 parents fe162d7 + 281be87 commit 56981c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seq.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
ffmpeg_friendly_name += numberless_filename[counter] + '_'
counter += 1
dirname = os.path.dirname(source_directory)
output = dirname + '/%s_consolidate.mov' % os.path.split(source_directory)[-1]
output = dirname + '/%s.mov' % os.path.split(source_directory)[-1]
ffmpeg_friendly_name += '%06d' + extension
codec = 'v210'
if args.p:
Expand Down

0 comments on commit 56981c5

Please sign in to comment.