1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-20 14:56:55 +00:00

etc/encoding-profiles.conf: use new option syntax

This is only for the comments, but since the old syntax is "discouraged"
(and might change semantics one day), we should use the new syntax in
all documentation-like things.
This commit is contained in:
wm4 2017-06-25 18:57:48 +02:00
parent 7293d9cf85
commit d8ad8ae015

View File

@ -12,7 +12,7 @@
# will be loaded instead.
#
# Then, list all profiles by
# mpv -profile help -o - | grep enc-
# mpv --profile=help | grep enc-
#
# The following kinds of encoding profiles exist:
# enc-a-*: initialize an audio codec including good defaults
@ -27,12 +27,12 @@
# options, or even switch to another codec.
#
# You can view the exact options a profile sets by
# mpv -show-profile enc-to-hp-slate-7
# mpv --show-profile=enc-to-hp-slate-7
#
# Examples:
# mpv -profile enc-to-dvdpal -o outfile.mpg infile.mkv
# mpv -profile enc-f-avi -ofps 30 -o outfile.avi infile.mkv
# mpv -profile enc-v-mpeg4 -ovcopts-add qscale=7 -profile enc-a-mp3 -oacopts-add b=320k -o outfile.avi infile.mkv
# mpv --profile=enc-to-dvdpal --o=outfile.mpg infile.mkv
# mpv --profile=enc-f-avi --ofps=30 --o=outfile.avi infile.mkv
# mpv --profile=enc-v-mpeg4 --ovcopts-add=qscale=7 --profile=enc-a-mp3 --oacopts-add=b=320k --o=outfile.avi infile.mkv
################
# audio codecs #