Compare commits

...

2 Commits

Author SHA1 Message Date
Alex Richards
ef21ce0892
Merge e8bebe0b03 into e1b3fa242c 2024-07-25 11:39:08 +00:00
Alex Richards
e8bebe0b03 [postprocessor/ffmpeg] Allow options for mp3
Why?
Options like `preferredquality` are ignored when postprocessing mp3s.

What?
Remove `mp3` from the list of `filecodec` values to check for in the
"lossless" condition unless `preferredquality` is unspecified.
2023-08-17 07:48:20 -07:00

View File

@ -276,7 +276,10 @@ class FFmpegExtractAudioPP(FFmpegPostProcessor):
acodec = 'copy'
extension = 'm4a'
more_opts = ['-bsf:a', 'aac_adtstoasc']
elif filecodec in ['aac', 'flac', 'mp3', 'vorbis', 'opus']:
elif (
filecodec in ['aac', 'flac', 'vorbis', 'opus'] or
(filecodec == 'mp3' and self._preferredquality is None)
):
# Lossless if possible
acodec = 'copy'
extension = filecodec