Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eugenehp/avfaudio-rs
https://github.com/eugenehp/avfaudio-rs
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/eugenehp/avfaudio-rs
- Owner: eugenehp
- License: mit
- Created: 2024-06-07T20:53:49.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-06-08T20:00:52.000Z (5 months ago)
- Last Synced: 2024-10-14T11:20:43.505Z (30 days ago)
- Language: Rust
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# avfaudio
A rust version of setting up AVFAudio and AVAudioSession.
Based on https://github.com/eugenehp/avfaudio-sys
> [!WARNING]
> Work in progress.
> This library implements only `AVAudioSession` category setting for now.
> For full bindings check [avfaudio2-sys](https://github.com/eugenehp/avfaudio-sys).## Development
### Build
Build on your host system (mac):
```shell
cargo build
```Or specify target like `aarch64-apple-visionos`, rest of the parameters are needed for the `nightly` rust toolchain, since visionOS is a Tier 3 target.
```shell
cargo +nightly build -Zbuild-std --target aarch64-apple-visionos
```### Run example
```shell
cargo run --example session
```## Authors
Copyright (c) 2024 Eugene Hauptmann
## License
[MIT](/LICENSE)