mirror of https://github.com/mpv-player/mpv
encoding-example-profiles and manpage: prefer libvorbis over vorbis
vorbis is the builtin bad vorbis encoder; whenever possible, one should rather use the "libvorbis" codec name.
This commit is contained in:
parent
8abce1effa
commit
47d35ca6be
|
@ -67,7 +67,7 @@ Typical MPEG-4 Part 10 ("AVC", "H.264") encoding, Matroska (MKV) container::
|
|||
|
||||
mpv infile -o outfile.mkv \
|
||||
-ovc libx264 -ovcopts preset=medium,crf=23,profile=baseline \
|
||||
-oac vorbis -oacopts qscale=3
|
||||
-oac libvorbis -oacopts qscale=3
|
||||
|
||||
Typical MPEG-4 Part 10 ("AVC", "H.264") encoding, MPEG-4 (MP4) container::
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ oacopts = b=128k
|
|||
|
||||
[enc-a-vorbis]
|
||||
profile-desc = "Vorbis (libvorbis)"
|
||||
oac = libvorbis
|
||||
oac = libvorbis,vorbis
|
||||
oacopts = qscale=3
|
||||
|
||||
################
|
||||
|
|
Loading…
Reference in New Issue