From 58d27c24df7352e240bbcfc02864c289f31b0ed4 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 5 Jun 2023 15:41:57 +0200 Subject: [PATCH] increase bitrate --- bin/remux_fix_media.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/remux_fix_media.py b/bin/remux_fix_media.py index f5693a6..895fc93 100644 --- a/bin/remux_fix_media.py +++ b/bin/remux_fix_media.py @@ -52,7 +52,7 @@ class FixCheckMedia(object): def hard_fix_webm(self, path): try: tmp_file = self.tmp_dir + 'out.webm ' - command = 'ffmpeg -loglevel 0 -i "'+ path + '" -vcodec libvpx -vb 500k -acodec libvorbis -aq 7 -f webm -y "' + tmp_file + '" > /dev/null' + command = 'ffmpeg -loglevel 0 -i "'+ path + '" -vcodec libvpx -vb 1500k -acodec libvorbis -aq 7 -f webm -y "' + tmp_file + '" > /dev/null' print(command) os.system(command) command = 'mv ' + tmp_file + path -- 2.39.5