summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRudolf Polzer <divverent@xonotic.org>2013-03-31 19:13:06 +0200
committerRudolf Polzer <divverent@xonotic.org>2013-03-31 19:13:06 +0200
commit47d35ca6befe766be89d0e4efc6b6dabd02175fb (patch)
tree7e97e36b83ca6f3753bfdb98a8eb2beec1752ddb
parent8abce1effa91613952a16ddb2aa128ecdff66ead (diff)
downloadmpv-47d35ca6befe766be89d0e4efc6b6dabd02175fb.tar.bz2
mpv-47d35ca6befe766be89d0e4efc6b6dabd02175fb.tar.xz
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.
-rw-r--r--DOCS/encoding.rst2
-rw-r--r--etc/encoding-example-profiles.conf2
2 files changed, 2 insertions, 2 deletions
diff --git a/DOCS/encoding.rst b/DOCS/encoding.rst
index 23a89d3163..979bc0b322 100644
--- a/DOCS/encoding.rst
+++ b/DOCS/encoding.rst
@@ -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::
diff --git a/etc/encoding-example-profiles.conf b/etc/encoding-example-profiles.conf
index 280c025946..ad67454bae 100644
--- a/etc/encoding-example-profiles.conf
+++ b/etc/encoding-example-profiles.conf
@@ -53,7 +53,7 @@ oacopts = b=128k
[enc-a-vorbis]
profile-desc = "Vorbis (libvorbis)"
-oac = libvorbis
+oac = libvorbis,vorbis
oacopts = qscale=3
################