mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
lame: Add examples (#15547)
* lame: Add examples * lame: Fix documentation Co-authored-by: Wiktor Perskawiec <git@spageektti.cc> * lame: Add missing colons * lame: Improve wording --------- Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
This commit is contained in:
parent
c546a21c6b
commit
81ba2a6d23
1 changed files with 16 additions and 0 deletions
16
pages/common/lame.md
Normal file
16
pages/common/lame.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# lame
|
||||
|
||||
> Encode WAV to MP3 files.
|
||||
> More information: <https://svn.code.sf.net/p/lame/svn/trunk/lame/USAGE>.
|
||||
|
||||
- Encode an audio file to MP3 using CBR 320 kbit/second:
|
||||
|
||||
`lame -b 320 {{path/to/file}}.wav {{path/to/output}}.mp3`
|
||||
|
||||
- Encode an audio file to MP3 using the V0 preset:
|
||||
|
||||
`lame -V 0 {{path/to/file}}.wav {{path/to/output}}.mp3`
|
||||
|
||||
- Encode an audio file to AAC:
|
||||
|
||||
`lame {{path/to/file}}.wav {{path/to/output}}.aac`
|
Loading…
Add table
Reference in a new issue