feat: plays radio stream from url

feat:  api structure
This commit is contained in:
Ahmet Kaan GÜMÜŞ 2024-03-07 04:07:11 +03:00
parent c908fdc097
commit 8f2b6f1e3f
17 changed files with 3534 additions and 0 deletions

18
front/src/main.rs Normal file
View file

@ -0,0 +1,18 @@
use dioxus::prelude::*;
fn main() {
println!("Hello, world!");
launch(app);
}
fn app() -> Element {
rsx!{
h1 {
"Radioxide"
}
div {
audio{ autoplay:true, controls:true, muted:false, src:"https://playerservices.streamtheworld.com/api/livestream-redirect/METRO_FM128AAC.aac?/;stream.mp3" }
}
}
}