From: Guillaume Pellerin Date: Mon, 5 Jun 2023 13:41:57 +0000 (+0200) Subject: increase bitrate X-Git-Tag: 2.1~10 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=58d27c24df7352e240bbcfc02864c289f31b0ed4;p=telecaster-server.git increase bitrate --- 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