Question Radio station music player app

DjGrego

Member
Joined
Nov 21, 2021
Messages
23
Programming Experience
Beginner
Hello. I'm trying to design a app that plays music for a FM radio station. I would like for the backend to be a Windows machine playing audio out of a sound card, and a web based gui available on the LAN for users to control what is playing on the station.

I have tried building a console based playlist type audio player, and was thinking about a Blazor wasm app to control it. Would this be best on a common sqlite database? Or would building all of this in a Blazor Server be better?

Any suggestions appreciated.
 
Since WASM runs on the client side, how will the data get sent to that server?
 
I'm not sure if it would be a Web API to connect to the database or if SignalR could do the job. Currently researching both. Or perhaps this is the wrong path and Blazor Server would be best...
 
Back
Top Bottom