https://github.com/flet-dev/flet-audio-recorder
Adds audio recording support to Flet apps.
https://github.com/flet-dev/flet-audio-recorder
audio-recorder audio-recording flet flet-extension flutter python recorder
Last synced: 17 days ago
JSON representation
Adds audio recording support to Flet apps.
- Host: GitHub
- URL: https://github.com/flet-dev/flet-audio-recorder
- Owner: flet-dev
- License: apache-2.0
- Created: 2025-01-07T22:21:00.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-16T22:36:33.000Z (10 months ago)
- Last Synced: 2025-06-16T23:29:19.677Z (10 months ago)
- Topics: audio-recorder, audio-recording, flet, flet-extension, flutter, python, recorder
- Language: Python
- Homepage: https://flet-dev.github.io/flet-audio-recorder/
- Size: 540 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# THIS PROJECT HAS BEEN ARCHIVED
`flet-audio-recorder` is now part of the main [Flet repository](https://github.com/flet-dev/flet/tree/main/sdk/python/packages/flet-audio-recorder).
# flet-audio-recorder
[](https://pypi.python.org/pypi/flet-audio-recorder)
[](https://pepy.tech/project/flet-audio-recorder)
[](https://github.com/flet-dev/flet-audio-recorder/blob/main/LICENSE)
Adds audio recording support to [Flet](https://flet.dev) apps.
It is based on the [record](https://pub.dev/packages/record) Flutter package.
## Documentation
Detailed documentation to this package can be found [here](https://flet-dev.github.io/flet-audio-recorder/).
## Platform Support
This package supports the following platforms:
| Platform | Supported |
|----------|:---------:|
| Windows | ✅ |
| macOS | ✅ |
| Linux | ✅ |
| iOS | ✅ |
| Android | ✅ |
| Web | ✅ |
## Usage
### Installation
To install the `flet-audio-recorder` package and add it to your project dependencies:
- Using `uv`:
```bash
uv add flet-audio-recorder
```
- Using `pip`:
```bash
pip install flet-audio-recorder
```
After this, you will have to manually add this package to your `requirements.txt` or `pyproject.toml`.
- Using `poetry`:
```bash
poetry add flet-audio-recorder
```
> [!NOTE]
> On Linux, encoding is provided by [fmedia](https://stsaz.github.io/fmedia/) which must be installed separately.
### Examples
For examples, see [these](./examples).