aboutsummaryrefslogtreecommitdiff
path: root/video_thread.py
diff options
context:
space:
mode:
Diffstat (limited to 'video_thread.py')
-rw-r--r--video_thread.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/video_thread.py b/video_thread.py
index ed2af84..25b3b46 100644
--- a/video_thread.py
+++ b/video_thread.py
@@ -41,11 +41,12 @@ class Worker(QtCore.QObject):
'-i', '-', # The input comes from a pipe
'-an',
'-i', inputFile,
- '-acodec', "libmp3lame", # output audio codec
+ '-acodec', "libfdk_aac", # output audio codec
+ '-b:a', "192k",
'-vcodec', "libx264",
- '-pix_fmt', "yuv444p",
+ '-pix_fmt', "yuv420p",
'-preset', "medium",
- '-f', "matroska",
+ '-f', "mp4",
outputFile],
stdin=sp.PIPE,stdout=sys.stdout, stderr=sys.stdout)