remove codecs

This commit is contained in:
JMARyA 2024-03-01 20:11:22 +01:00
parent 808ec21d37
commit e613676816
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
6 changed files with 66 additions and 83 deletions

View file

@ -5,8 +5,9 @@ os:
website: https://mpv.io
flatpak-id: io.mpv.Mpv
---
# MPV
mpv is a based media player. It supports a wide variety of video [file formats](../../files/MIME.md), audio and video [codecs](../../files/media/Codecs.md), and subtitle types. Special input [URL](../../internet/URL.md) types are available to read input from a variety of sources other than disk files. Depending on platform, a variety of different video and audio output methods are supported.
mpv is a based media player. It supports a wide variety of video [file formats](../../files/MIME.md), audio and video codecs, and subtitle types. Special input [URL](../../internet/URL.md) types are available to read input from a variety of sources other than disk files. Depending on platform, a variety of different video and audio output methods are supported.
## Usage
Usage: `mpv [options] [file|URL|PLAYLIST|-]`
@ -454,7 +455,7 @@ You can encode files from one format/codec to another using this facility. This
- `--of=<format>`
Specifies the output format (overrides autodetection by the file name extension of the file specified by `-o`). See `--of=help` for a full list of supported formats.
- `--oac=<codec>`
Specifies the output audio codec. See `--oac=help` for a full list of supported [codecs](../../files/media/Codecs.md).
Specifies the output audio codec. See `--oac=help` for a full list of supported codecs.
- `--oacopts=<options>`
Specifies the output audio codec options for libavcodec. See `--oacopts=help` for a full list of supported options.
Example:
@ -463,7 +464,7 @@ You can encode files from one format/codec to another using this facility. This
--oac=libmp3lame --oacopts=b=128000
```
- `--ovc=<codec>`
Specifies the output video codec. See `--ovc=help` for a full list of supported [codecs](../../files/media/Codecs.md).
Specifies the output video codec. See `--ovc=help` for a full list of supported codecs.
- `--ovcopts=<options>`
Specifies the output video codec options for libavcodec. See `--ovcopts=help` for a full list of supported options.