@@ -22,6 +22,7 @@ class VoiceMp3Low(Config):
22
22
"-codec:a" : "mp3" , # audio codec
23
23
"-ar" : "44100" , # audio sampling rate
24
24
"-b:a" : "48k" , # target audio bitrate
25
+ "-ac" : "2" , # force stereo even if input is higher
25
26
}
26
27
27
28
@@ -49,6 +50,7 @@ class VideoWebmLow(Config):
49
50
"-codec:a" : "libvorbis" , # audio codec
50
51
"-b:a" : "48k" , # target audio bitrate
51
52
"-ar" : "44100" , # audio sampling rate
53
+ "-ac" : "2" , # force stereo even if input is higher
52
54
}
53
55
54
56
@@ -77,6 +79,7 @@ class VideoMp4Low(Config):
77
79
"-ar" : "44100" , # audio sampling rate
78
80
"-b:a" : "48k" , # target audio bitrate
79
81
"-movflags" : "+faststart" , # extra flag
82
+ "-ac" : "2" , # force stereo even if input is higher
80
83
}
81
84
82
85
@@ -101,6 +104,7 @@ class VideoWebmHigh(Config):
101
104
"-codec:a" : "libvorbis" , # audio codec
102
105
"-b:a" : "48k" , # target audio bitrate
103
106
"-ar" : "44100" , # audio sampling rate
107
+ "-ac" : "2" , # force stereo even if input is higher
104
108
}
105
109
106
110
0 commit comments