Skip to content

Commit

Permalink
lame: Add examples (tldr-pages#15547)
Browse files Browse the repository at this point in the history
* lame: Add examples

* lame: Fix documentation

Co-authored-by: Wiktor Perskawiec <[email protected]>

* lame: Add missing colons

* lame: Improve wording

---------

Co-authored-by: Wiktor Perskawiec <[email protected]>
  • Loading branch information
Myzel394 and spageektti authored Jan 20, 2025
1 parent c546a21 commit 81ba2a6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pages/common/lame.md
Original file line number Diff line number Diff line change
@@ -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`

0 comments on commit 81ba2a6

Please sign in to comment.