mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 17:18:01 +01:00
Don't set the '-aq' option with the opus format (fixes #1263)
This commit is contained in:
parent
b4cdc245cf
commit
0f6d12e43c
1 changed files with 2 additions and 1 deletions
|
@ -178,7 +178,8 @@ def run(self, information):
|
|||
extension = self._preferredcodec
|
||||
more_opts = []
|
||||
if self._preferredquality is not None:
|
||||
if int(self._preferredquality) < 10:
|
||||
# The opus codec doesn't support the -aq option
|
||||
if int(self._preferredquality) < 10 and extension != 'opus':
|
||||
more_opts += [self._exes['avconv'] and '-q:a' or '-aq', self._preferredquality]
|
||||
else:
|
||||
more_opts += [self._exes['avconv'] and '-b:a' or '-ab', self._preferredquality + 'k']
|
||||
|
|
Loading…
Reference in a new issue