Opened 11 years ago
Closed 9 years ago
#3666 closed enhancement (invalid)
Enhancement Opus compression_level and qscale
Reported by: | artofit | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | avcodec |
Version: | git-master | Keywords: | libopus |
Cc: | Blocked By: | ||
Blocking: | Reproduced by developer: | no | |
Analyzed by developer: | no |
Description
For the sake of standardisation, would welcome
ffmpeg -i input.wav -c:a libopus -q:a 5 ouput.mkv
instead of currently
ffmpeg -i input.wav -c:a libopus -compression_level 5 ouput.mkv
This already applies to other audio codec such as mp3 or aac.
Ref:
http://trac.ffmpeg.org/wiki/Encoding%20VBR%20%28Variable%20Bit%20Rate%29%20mp3%20audio
Change History (3)
comment:1 by , 11 years ago
Component: | undetermined → avcodec |
---|---|
Keywords: | libopus added; Opus compression_level qscale removed |
Version: | unspecified → git-master |
comment:2 by , 9 years ago
comment:3 by , 9 years ago
Resolution: | → invalid |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
I don't think mapping
comp
to the-q
flag is a good idea:comp
refers to the encoding computational complexity (i.e. encoder speed), not the audio quality. So this like thelame
-q
flag (whichffmpeg
maps to-compression_level
) and not the-V
lame
flag (whichffmpeg
maps to-q
). So I think the current mapping ofcomp
to-compression_level
is correct and consistent with other lossy audio codecs. I believe this issue can be marked as invalid.