https://github.com/kentaro/rodio_ex
An Elixir binding for Rodio
https://github.com/kentaro/rodio_ex
elixir rodio rustler
Last synced: 2 months ago
JSON representation
An Elixir binding for Rodio
- Host: GitHub
- URL: https://github.com/kentaro/rodio_ex
- Owner: kentaro
- Created: 2024-01-18T11:29:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-18T13:59:13.000Z (over 1 year ago)
- Last Synced: 2025-03-14T19:48:57.941Z (3 months ago)
- Topics: elixir, rodio, rustler
- Language: Elixir
- Homepage: https://github.com/kentaro/rodio_ex
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rodio_ex
An Elixir binding for [Rodio](https://github.com/RustAudio/rodio).
This library currently supports only just playing a sound file.## Installation
```elixir
def deps do
[
{:rodio_ex, github: "kentaro/rodio_ex", branch: "main"}
]
end
```## Usage
```elixir
Rodio.play("/path/to/audio")
```## Author
Kentaro Kuribayashi