playback_demo.mp4
First, add Player to your App variables. Insert the path to the file to be played in from_path() or bytes using from_bytes()
For file paths:
struct MyApp {
player: Player,
}
impl Default for MyApp {
fn default() -> Self {
Self {
player: Player::from_path("file_path"),
}
}
}For bytes, enter the following line instead:
player: Player::from_bytes(bytes),For transcriptions: Set up an async block to allow for asynchronous tokio functions
fn main() {
let rt = Runtime::new().unwrap();
let _ = rt.block_on(async {
eframe::run_native(
"Player Example",
NativeOptions::default(),
Box::new(|_| Ok(Box::new(MyApp::default()))),
)
});
}Now, under the update function, add this line to display the player:
self.player.ui(ui);For faster transcription, run with the release flag
To play your own files, clone/download this repository and use:
cargo run --example main --release
| Format | Playback | Transcription |
|---|---|---|
| mp3 | ✅ | ✅ |
| m4a | ✅ | ✅ |
| wav | ✅ | ✅ |
| flac | ✅ | ❌ |
Currently working on support
Dreamweaver.mp3 track in demo assets made by @romms921
