We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bbb5e5 commit 5735769Copy full SHA for 5735769
transcode.py
@@ -11,7 +11,7 @@
11
sys.path.append(os.path.join(sys.path[0], "lib"))
12
try:
13
from TranscodeSession import Session
14
- from common import get_user_response
+ from common import get_yn_answer
15
except ImportError:
16
sys.exit("FATAL: failed to import dependencies from ./lib/\n")
17
@@ -50,7 +50,7 @@ def evaluate_args():
50
sys.exit("Invalid command-line arguments.\n")
51
elif args.all and args.quality:
52
print("\nWarning! Combining --all and --quality options is not recommended and may not produce optimal HEVC transcodes.")
53
- proceed = get_user_response()
+ proceed = get_yn_answer()
54
if not proceed:
55
sys.exit("Aborting invocation with --all and --quality options.\n")
56
0 commit comments