Skip to content

Commit

Permalink
adding comments to the fps alternative argument
Browse files Browse the repository at this point in the history
  • Loading branch information
raecasey authored Jan 13, 2017
1 parent cfa219d commit 7244216
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions seq.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@
codec = 'v210'
if args.p:
codec = 'prores'
#the sript will choose 24fps as default
cmd = ['ffmpeg','-f','image2','-framerate','24', '-i', ffmpeg_friendly_name,'-c:v',codec,output]
#adding the choice of an alternative fps here through argsparse
if args.f:
fps = raw_input('what alternative framerate do you require? 16,18,21,25?')
cmd = ['ffmpeg','-f','image2','-framerate',fps, '-i', ffmpeg_friendly_name,'-c:v',codec,output]
Expand Down

0 comments on commit 7244216

Please sign in to comment.