mirror of https://github.com/mpv-player/mpv
codecs: prefer libmad over libmpg123
Someone on the internet once told me that MAD is the best mp3 decoder (and better than mpg123), so he must be right. I used to force mad in my config file, but now I'm annoyed by the line "Forced audio codec" that goes along with it. Because I think that message is necessary and needed to discourage users from doing stupid things, but I still want to get rid of this message, I'm simply moving MAD up in the codec selection order. (Please look away.)
This commit is contained in:
parent
5b9d01bd49
commit
c8b0f21154
|
@ -4217,6 +4217,18 @@ audiocodec ffsonic
|
|||
driver ffmpeg
|
||||
dll "sonic"
|
||||
|
||||
audiocodec mad
|
||||
info "libMAD MPEG layer 1-2-3"
|
||||
status working
|
||||
format 0x50
|
||||
format 0x55
|
||||
format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files)
|
||||
fourcc ".mp3" ; CBR/VBR MP3 (MOV files)
|
||||
fourcc "MP3 " ; used in .nsv files
|
||||
fourcc "LAME" ; used in mythtv .nuv files
|
||||
driver libmad
|
||||
dll "libmad"
|
||||
|
||||
audiocodec mpg123
|
||||
; this is preferred over ffmp2/ffmp3 since it is faster, generally
|
||||
info "MPEG 1.0/2.0/2.5 layers I, II, III"
|
||||
|
@ -4314,18 +4326,6 @@ audiocodec ffmp2
|
|||
driver ffmpeg
|
||||
dll "mp2"
|
||||
|
||||
audiocodec mad
|
||||
info "libMAD MPEG layer 1-2-3"
|
||||
status working
|
||||
format 0x50
|
||||
format 0x55
|
||||
format 0x5500736d ; "ms\0\x55" older mp3 fcc (MOV files)
|
||||
fourcc ".mp3" ; CBR/VBR MP3 (MOV files)
|
||||
fourcc "MP3 " ; used in .nsv files
|
||||
fourcc "LAME" ; used in mythtv .nuv files
|
||||
driver libmad
|
||||
dll "libmad"
|
||||
|
||||
audiocodec mp3acm
|
||||
info "MPEG layer-3"
|
||||
status working
|
||||
|
|
Loading…
Reference in New Issue