You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ A low-level audio plugin for Flutter.
20
20
* 3D positional audio, including Doppler effect
21
21
* Support for MP3, WAV, OGG, and FLAC
22
22
* Generate waveforms with the following types: `square`, `saw`, `sin`, `triangle`, `bounce`, `jaws`, `humps`, `fSquare` and `fSaw`
23
-
* Audio effects such as echo, reverb, filter, equalizer, pitchshifter, limiter, compressor etc.
23
+
* Audio effects such as `echo`, `reverb`, `filter`, `equalizer`, `pitch``shifter`, `limiter`, `compressor` etc.
24
24
* Stream audio from given audio data with buffering support with the following formats:
25
25
-`s8` signed 8 bit
26
26
-`s16le` signed 16 bit little endian
@@ -48,9 +48,9 @@ In other words, it is calling the C/C++ methods of the underlying audio engine d
48
48
When using an `AudioSource` as an audio stream to play custom audio data (ie using setBufferStream/addAudioDataStream/setDataIsEnded), it is possible to add PCM RAW audio data in *s8*, *s16le*, *s32le*, *f32le* and since it supports also the *opus* format with the Ogg codec (ie to work with OpenAI APIs), the [Opus](https://www.opus-codec.org/) and [Ogg](https://xiph.org/ogg/) libraries from [Xiph.org](https://www.xiph.org/) are needed.
49
49
50
50
On Linux and MacOS theese libraries must be installed if you want to use this kind of `AudioSource`:
51
-
- Linux
51
+
-**Linux**
52
52
- install them depending on the package manager used by you distribution
53
-
- MacOS
53
+
-**MacOS**
54
54
-`brew install opus libogg`
55
55
56
56
if the libraries are not found the plugin will throw an exception when calling `setBufferStream` using Opus format.
0 commit comments