Skip to content

Commit

Permalink
readme updated with another example
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrolcl committed Sep 23, 2024
1 parent ad145cd commit a678afe
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ Example 2: pipe the rendered audio thru the Linux ALSA 'aplay' utility:

$ sonivoxrender ants.mid | aplay -c 2 -f S16_LE -r 44100

equivalent to:

$ sonivoxrender ants.mid | aplay -f cd

Example 3: pipe the rendered audio thru the ['lame'](https://lame.sourceforge.io) utility creating a MP3 file:

$ sonivoxrender ants.mid | lame -r -s 44100 - ants.mp3
Expand All @@ -79,6 +83,10 @@ Example 4: pipe the rendered audio thru the ['sox'](https://sourceforge.net/proj

$ sonivoxrender ants.mid | sox -t s16 -c 2 -r 44100 - ants.wav

Example 5: pipe the rendered audio thru the PulseAudio's 'pacat' utility:

$ sonivoxrender ants.mid | pacat

## Unit tests

The Android unit tests have been integrated in the CMake build system, with little modifications. A requirement is GoogleTest, either installed system wide or it will be downloaded from the git repository.
Expand Down

0 comments on commit a678afe

Please sign in to comment.