From fb351d34d305b4f9ca1c144545f4935dc1cce3c9 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Mon, 17 Jan 2022 16:34:32 +0100 Subject: [PATCH] Increase mp3 bitrate Sadly, too many people and applications still prefer this archaic format so it has to sound somewhat good. --- common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.py b/common.py index c0ecffc..9db2dca 100644 --- a/common.py +++ b/common.py @@ -17,7 +17,7 @@ FORMATS = { "attached_pic", ], "oga": ["-b:a", "64k", "-c:a", "libvorbis"], - "mp3": ["-b:a", "72k", "-map", "0:0", "-map", "1:0"], + "mp3": ["-b:a", "96k", "-map", "0:0", "-map", "1:0"], }