From 50041d0274ae3206e514ac692db121438de58259 Mon Sep 17 00:00:00 2001 From: Stefan Brand Date: Fri, 12 Feb 2010 14:36:31 +0100 Subject: [PATCH] Small corrections --- n900-encode.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/n900-encode.py b/n900-encode.py index f82de10..19a5c19 100755 --- a/n900-encode.py +++ b/n900-encode.py @@ -156,6 +156,7 @@ def convert(input, output, res, abitrate, vbitrate, threads, mpopts): "-noframedrop", "-benchmark", "-quiet", + "-nolirc", "-msglevel", "all=-1", input ] for mpopt in mpopts.split(" "): @@ -168,6 +169,7 @@ def convert(input, output, res, abitrate, vbitrate, threads, mpopts): "-vc", "null", "-noframedrop", "-quiet", + "-nolirc", "-msglevel", "all=-1", input ] for mpopt in mpopts.split(" "): @@ -257,7 +259,7 @@ def usage(): # Start the Main Function if __name__ == "__main__": - # Catch kill and cleean up + # Catch kill and clean up atexit.register(cleanup) signal(SIGTERM, lambda signum, stack_frame: exit(1))