We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ae9086 commit cacb5f6Copy full SHA for cacb5f6
scripts/convert.py
@@ -271,7 +271,7 @@ def get_output(process,error_handler=None):
271
if preferred_choices.get(key)==None:
272
convert_vid=input(f"current video codec is {codecs['Video']}, convert it to h264?(y/N)(default=N)")
273
# defaults to N so only checking if Y entered
274
- if(convert_vid.capitalize=='Y'):
+ if(convert_vid.capitalize()=='Y'):
275
codecs[key]='h264'
276
else:
277
codecs[key]='copy'
0 commit comments