1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/opusenc.md
코드싸이 650fabfc22
common/o*: add Korean translation (#14642)
* common/o*: add Korean translation

* odps-resource: update Korean translation (fix typo)
2024-11-05 23:54:36 +09:00

20 lines
739 B
Markdown

# opusenc
> WAV 또는 FLAC 오디오를 Opus로 변환.
> 더 많은 정보: <https://opus-codec.org/docs/opus-tools/opusenc.html>.
- 기본 옵션을 사용하여 WAV를 Opus로 변환:
`opusenc {{경로/대상/입력.wav}} {{경로/대상/출력.opus}}`
- 스테레오 오디오를 최고 품질 수준으로 변환:
`opusenc --bitrate {{512}} {{경로/대상/입력.wav}} {{경로/대상/출력.opus}}`
- 5.1 서라운드 사운드 오디오를 최고 품질 수준으로 변환:
`opusenc --bitrate {{1536}} {{경로/대상/입력.flac}} {{경로/대상/출력.opus}}`
- 음성 오디오를 최저 품질 수준으로 변환:
`opusenc {{경로/대상/입력.wav}} --downmix-mono --bitrate {{6}} {{경로/대상/출력.opus}}`