Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

25
tldr/opusenc Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# opusenc
> Convert WAV or FLAC audio to Opus.
> More information: <https://opus-codec.org/docs/opus-tools/opusenc.html>.
- Convert WAV to Opus using default options:
`opusenc {{path/to/input.wav}} {{path/to/output.opus}}`
- Convert stereo audio at the highest quality level:
`opusenc --bitrate {{512}} {{path/to/input.wav}} {{path/to/output.opus}}`
- Convert 5.1 surround sound audio at the highest quality level:
`opusenc --bitrate {{1536}} {{path/to/input.flac}} {{path/to/output.opus}}`
- Convert speech audio at the lowest quality level:
`opusenc {{path/to/input.wav}} --downmix-mono --bitrate {{6}} {{path/to/out.opus}}`